

moda
Members-
Content count
39 -
Joined
-
Last visited
Profile Information
-
Real Name
Alex
-
Thank you for fast reply, I did divide installation into different files, but I have a problem only with META portion on <head> tags and only in categories, linsted and nested. META portion is only applied on template_top.php and its taking its source info from header_tags.php So I can't figure out, why I can't see it. Any ideas? thanks.
-
HI Jack, thank you for a great add-on. My shop using categories_listing.php & categories_nested.php files in index.php I have a problem with META tags, like - <title> name="Description", name="Keywords" content showing "" - Nothing. Only in categories. I tried clear all tags and fill it up again, everything is OK, in the middle of the page I see description and breadcrumbs changing according to filled tags. I can see the information in the middle of the page but nothing in <head> Meta tags. But all rest of the files like product_info are working just fine. header_tags.php has record for case (basename($_SERVER['PHP_SELF']) === FILENAME_CATEGORIES_NESTED): and case (basename($_SERVER['PHP_SELF']) === FILENAME_CATEGORIES_LISTING): Here is the part of the index.php where its transfer the page to if ($category_depth == 'nested') { $current_page = FILENAME_CATEGORIES_NESTED; require(DIR_WS_INCLUDES . 'template_top.php'); include(FILENAME_CATEGORIES_NESTED); ?> <?php } elseif ($category_depth == 'products' || (isset($HTTP_GET_VARS['manufacturers_id']) && !empty($HTTP_GET_VARS['manufacturers_id']))) { $current_page = FILENAME_CATEGORIES_LISTING; require(DIR_WS_INCLUDES . 'template_top.php'); include(FILENAME_CATEGORIES_LISTING); I was thinking may be in my case, $current_page = FILENAME_CATEGORIES_NESTED; and $current_page = FILENAME_CATEGORIES_LISTING; NOT equal to "case (basename($_SERVER['PHP_SELF']) === FILENAME_CATEGORIES_LISTING):" and same for NESTED in header_tags.php?? and this may be a problem why I dont see the meta tags information in category pages. Do you have any other idea? Do you know how to see the cache for the page meta tags? is it in database or file? thank you.
-
HI All, Thank you for this great addon. I have a problem, in rewrite mode, with .htaccess. All the time then I click to category link or product link, it trying to access this page and then redirect all the time to index.php. On the server mod_rewrite is ON and configured. I don't know why this happens, have you see this before? htaccess # If you are getting errors you may need to comment this out like .. # Options +FollowSymLinks Options +SymLinksIfOwnerMatch <IfModule mod_rewrite.c> RewriteEngine On # RewriteBase instructions # Change RewriteBase dependent on how your shop is accessed as below. # http://www.mysite.com = RewriteBase / # http://www.mysite.com/catalog/ = RewriteBase /catalog/ # http://www.mysite.com/catalog/shop/ = RewriteBase /catalog/shop/ # Change RewriteBase using the instructions above RewriteBase / RewriteRule ^([a-z0-9/-]+)-p-([0-9]+).html$ product_info.php [NC,L,QSA] RewriteRule ^([a-z0-9/-]+)-c-([0-9_]+).html$ index.php [NC,L,QSA] RewriteRule ^([a-z0-9/-]+)-m-([0-9]+).html$ index.php [NC,L,QSA] RewriteRule ^([a-z0-9/-]+)-pi-([0-9]+).html$ popup_image.php [NC,L,QSA] RewriteRule ^([a-z0-9/-]+)-pr-([0-9]+).html$ product_reviews.php [NC,L,QSA] RewriteRule ^([a-z0-9/-]+)-pri-([0-9]+).html$ product_reviews_info.php [NC,L,QSA] # Articles contribution RewriteRule ^([a-z0-9/-]+)-t-([0-9_]+).html$ articles.php [NC,L,QSA] RewriteRule ^([a-z0-9/-]+)-au-([0-9]+).html$ articles.php [NC,L,QSA] RewriteRule ^([a-z0-9/-]+)-a-([0-9]+).html$ article_info.php [NC,L,QSA] # Information pages RewriteRule ^([a-z0-9/-]+)-i-([0-9]+).html$ information.php [NC,L,QSA] # Links contribution RewriteRule ^([a-z0-9/-]+)-links-([0-9_]+).html$ links.php [NC,L,QSA] # Newsdesk contribution RewriteRule ^([a-z0-9/-]+)-n-([0-9]+).html$ newsdesk_info.php [NC,L,QSA] RewriteRule ^([a-z0-9/-]+)-nc-([0-9]+).html$ newsdesk_index.php [NC,L,QSA] RewriteRule ^([a-z0-9/-]+)-nri-([0-9]+).html$ newsdesk_reviews_info.php [NC,L,QSA] RewriteRule ^([a-z0-9/-]+)-nra-([0-9]+).html$ newsdesk_reviews_article.php [NC,L,QSA] </IfModule>
-
[Contribution] iOSC - mobile version of OSC on your iPhone
moda replied to bumbarash's topic in General Add-Ons Support
HI raiwa, Thnak you for a great contribution, I have a question: \mobile\includes\Application_top.php has this line: if (COMPATIBILITY_MODE) { require('includes/iosc_default_application_top.php'); } I do not have iosc_default_application_top.php in the contribution. Where should I get this file from? Do I need it? I have a problem with items not showing in the card after customers add them. thanks. -
Hello ALL, I have a problem similar to buylites ( http://forums.oscommerce.com/topic/336702-ultimate-seo-urls-5-by-fwr-media/page__view__findpost__p__159008 page 167 post # 3324 Traditional Rewrite Seo Urls ( Requires mod_rewrite and RewriteRules added to .htaccess - www.mysite.com/the-brand-etc-great-product-p-3.html) is not working. Firefox: "The page isn't redirecting properly Firefox has detected that the server is redirecting the request for this address in a way that will never complete." However Standard Seo Urls is working OK. my .htaccess Options +SymLinksIfOwnerMatch <IfModule mod_rewrite.c> RewriteEngine On # RewriteBase instructions # Change RewriteBase dependent on how your shop is accessed as below. # http://www.mysite.com = RewriteBase / # http://www.mysite.com/catalog/ = RewriteBase /catalog/ # http://www.mysite.com/catalog/shop/ = RewriteBase /catalog/shop/ # Change RewriteBase using the instructions above RewriteBase / RewriteRule ^([a-z0-9/-]+)-p-([0-9]+).html$ product_info.php [NC,L,QSA] RewriteRule ^([a-z0-9/-]+)-c-([0-9_]+).html$ index.php [NC,L,QSA] RewriteRule ^([a-z0-9/-]+)-m-([0-9]+).html$ index.php [NC,L,QSA] RewriteRule ^([a-z0-9/-]+)-pi-([0-9]+).html$ popup_image.php [NC,L,QSA] RewriteRule ^([a-z0-9/-]+)-pr-([0-9]+).html$ product_reviews.php [NC,L,QSA] RewriteRule ^([a-z0-9/-]+)-pri-([0-9]+).html$ product_reviews_info.php [NC,L,QSA] # Articles contribution RewriteRule ^([a-z0-9/-]+)-t-([0-9_]+).html$ articles.php [NC,L,QSA] RewriteRule ^([a-z0-9/-]+)-au-([0-9]+).html$ articles.php [NC,L,QSA] RewriteRule ^([a-z0-9/-]+)-a-([0-9]+).html$ article_info.php [NC,L,QSA] # Information pages RewriteRule ^([a-z0-9/-]+)-i-([0-9]+).html$ information.php [NC,L,QSA] # Links contribution RewriteRule ^([a-z0-9/-]+)-links-([0-9_]+).html$ links.php [NC,L,QSA] # Newsdesk contribution RewriteRule ^([a-z0-9/-]+)-n-([0-9]+).html$ newsdesk_info.php [NC,L,QSA] RewriteRule ^([a-z0-9/-]+)-nc-([0-9]+).html$ newsdesk_index.php [NC,L,QSA] RewriteRule ^([a-z0-9/-]+)-nri-([0-9]+).html$ newsdesk_reviews_info.php [NC,L,QSA] RewriteRule ^([a-z0-9/-]+)-nra-([0-9]+).html$ newsdesk_reviews_article.php [NC,L,QSA] </IfModule> my configure.php define('HTTP_SERVER', 'http://www.mysite.com'); // eg, http://localhost - should not be empty for productive servers define('HTTPS_SERVER', 'https://www.mysite.com'); // eg, https://localhost - should not be empty for productive servers define('ENABLE_SSL', true); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', 'www.mysite.com'); define('HTTPS_COOKIE_DOMAIN', 'www.mysite.com'); define('HTTP_COOKIE_PATH', '/'); define('HTTPS_COOKIE_PATH', '/'); define('DIR_WS_HTTP_CATALOG', '/'); define('DIR_WS_HTTPS_CATALOG', '/'); define('DIR_WS_IMAGES', 'images/'); define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/'); define('DIR_WS_INCLUDES', 'includes/'); define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/'); define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/'); define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/'); define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/'); define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/'); define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/'); Can you please let me know how to troubleshoot this error? Anybody see this before? thank you very much.
-
Offical Google Checkout module for osCommerce Support Thread
moda replied to Silverado05's topic in Other
ADDON: THEN I ADD ITEM TO MY SHOPPING CARD, CHECKOUT BUTTON FOR GC IS MISSING. THEN I DELETE ALL ITEMS ITS APPEARS LIKE A GRAY WITH EMPTY SHOPPING CARD MESSAGE. If anybody have an idea what it may be???? -
Offical Google Checkout module for osCommerce Support Thread
moda replied to Silverado05's topic in Other
Hello Everybody! I have a strange problem, On my login page GCheckout button is available before user login. Ones user logged on inside oscommerce account, checkout button is NOT Available anymore. I check all the code present on shopping_card.php. I use 1.5 version, GCheckout is on all the fields are filled. How to tune it for logged on customers???? thanks! -
PayPal WPP Direct Payments & Express Checkout Support
moda replied to dynamoeffects's topic in Other
I have a last version 1.0.4. Everything been working fine, without changing anything I start to receive the following error, Fatal error: Cannot access empty property in /home/XXXXXXX/public_html/includes/modules/payment/paypal_wpp.php on line 1165 I check http://php.syntaxerrors.info/index.php?tit..._empty_property and its says because of the syntax. Does this sounds right? I never change anything. My server info: Server Host: xxxx.xxxxxx.net (111.111.111.111) Database Host: localhost (127.0.0.1) Server OS: Linux 2.6.9-78.0.13.ELsmp Database: MySQL 5.0.67-community-log Server Date: 04/10/2009 23:42:22 Datebase Date: 04/10/2009 23:42:21 Server Up Time: 23:42:22 up 47 min, 2 users, load average: 10.92, 13.74, 16.44 HTTP Server: Apache PHP Version: 5.2.8 (Zend: 2.2.0) osCommerce 2.2-MS2 PHP Version 5.2.8 -
PayPal WPP Direct Payments & Express Checkout Support
moda replied to dynamoeffects's topic in Other
Glen ! Thanks a lot for a link. And explanation of 10505!!! BTW, then I call paypal with error 10505 whey told me to contact my hosting provider :D , no comments.... -
PayPal WPP Direct Payments & Express Checkout Support
moda replied to dynamoeffects's topic in Other
Thank you for reply! Where is no switch for AVS, only decline by amount maximum with unconfirmed address. In my payment I have : Address Verification Service AVS : S What is "S" stand for? -
PayPal WPP Direct Payments & Express Checkout Support
moda replied to dynamoeffects's topic in Other
"UNconfirmed email" = UNconfirmed address -
PayPal WPP Direct Payments & Express Checkout Support
moda replied to dynamoeffects's topic in Other
Hi Brian! thanks for reply! I got a successful charge, and everything is look working, I turn on debug mode, however no errors receive until now. This transaction is with UNconfirmed email, I know that Payment pro is not qualify for a seller protection. Are all of them will be with unconfirmed address?? Paypal mention something about AVS (Address Verification System) can it be used with your contribution? Is any solution to check a billing address of cc and verify the owner?? -
PayPal WPP Direct Payments & Express Checkout Support
moda replied to dynamoeffects's topic in Other
2 dynamoeffects Thank you for a fast reply! No, it was MasterCard. However it has my name on it. BTW in WPP_diag......php everything is YES and GREEN. PS: Is any log file available, to find our how many people try to change card and what errors they receive?? -
PayPal WPP Direct Payments & Express Checkout Support
moda replied to dynamoeffects's topic in Other
Hello Brian Burton! Thank you for this great contribution! For a some reason I receive an error: Gateway Decline (10505) This transaction cannot be processed. I try to charge a card on my name, do you think paypal block card with owners name on it?? -
'On The Fly' Auto Thumbnailer using GD Library 2.1
moda replied to mloeffen's topic in General Add-Ons Support
Hello, For a some reason, all the pictures not show in Internet Explorer use (version 7. 0.573.11), instead are red X. Links are the following http://www.mysite.com/product_thumb.php?im...w=200&h=150 Its working normal in Fire Fox, Safari, Do you have any solution?? thanks