Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Johan-_-_

Pioneers
  • Posts

    4
  • Joined

  • Last visited

Everything posted by Johan-_-_

  1. Thanks for you reply, I have looked at all the settings on my account at Paypals website and everything seems fine, the default currency setting is Swedish which is correct. I have also suspected that the comma and the dot is the reason for the mismatch, but I have no idea how to correct it. I have tried to edit the code and also checked in the admin settings in Oscommerce but still no luck. The correct Swedish way of writing it would be 1299 kr without dots and commas (and I don't need the decimals) but I don't know where they come from. :unsure:
  2. Hi! I have a major issue, every time the customer pays using Paypal Standard (included in OSC 2.3.1) I get the following error in the order view: PayPal IPN Verified [Completed (Unverified; 1299 kr); PayPal transaction value (1299.00) does not match order value (1,299)] This problem is driving me crazy since neither the customer or we receive an e-mail confirmation for the order. I have searched the web for weeks but can't find a solution that works. I have also tried to exclude the verification in the code, I have tried to make the verification to always match and I have tried to always send order confirmation regardless the result of the verification but nothing has succeded (I'm not that good a programmer). Has anyone seen this before? Any hints will be appreciated. Thanks, Johan
  3. Ok, thanks for the information. You addon is great, it's just so frustrating when you can't get it to work and have tried everything. My output in standard mode is: Opening /customers/3/7/f/shop.se//httpd.www/sitemapproducts.xml FS_CAT /customers/3/7/f/shop.se//httpd.www/ Server http://www.shop.se Save Path /customers/3/7/f/shop.se//httpd.www/ WS_CAT / Write /customers/3/7/f/shop.se//httpd.www/sitemapproducts.xml Generated Google Product Sitemap Successfully Opening /customers/3/7/f/shop.se//httpd.www/sitemapcategories.xml FS_CAT /customers/3/7/f/shop.se//httpd.www/ Server http://www.shop.se Save Path /customers/3/7/f/shop.se//httpd.www/ WS_CAT / Write /customers/3/7/f/shop.se//httpd.www/sitemapcategories.xml Generated Google Category Sitemap Successfully Opening /customers/3/7/f/shop.se//httpd.www/sitemapmanufacturers.xml FS_CAT /customers/3/7/f/shop.se//httpd.www/ Server http://www.shop.se Save Path /customers/3/7/f/shop.se//httpd.www/ WS_CAT / Write /customers/3/7/f/shop.se//httpd.www/sitemapmanufacturers.xml Generated Google Manufacturers Sitemap Successfully ERROR: Google Pages Sitemap Generation FAILED! Opening /customers/3/7/f/shop.se//httpd.www/sitemapindex.xml FS_CAT /customers/3/7/f/shop.se//httpd.www/ Server http://www.shop.se Save Path /customers/3/7/f/shop.se//httpd.www/ WS_CAT / Write /customers/3/7/f/shop.se//httpd.www/sitemapindex.xml Generated Google Sitemap Index Successfully My FS_CAT doesn't seem to be ok, I read somewhere in this thread that is should be: FS_CAT /customers/3/7/f/shop.se//httpd.www/googlesitemap so I guess that the error should be in my configure.php file. But I can't find anything wrong with that one either: define('HTTP_SERVER', 'http://www.shop.se'); define('HTTPS_SERVER', 'https://www.shop.se'); define('ENABLE_SSL', false); define('HTTP_COOKIE_DOMAIN', '.www.shop.se'); define('HTTPS_COOKIE_DOMAIN', '.www.shop.se'); 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/'); define('DIR_FS_CATALOG', '/customers/3/7/f/shop.se//httpd.www/'); //define('DIR_FS_CATALOG', dirname($HTTP_SERVER_VARS['SCRIPT_FILENAME']) . '/'); tried this, didn't work... define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/'); define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/'); Alternate mode In alternate mode nothing works, I get permission denied and I notice that it's missing a / before httpd.www which I havn't been able to add.. Opening /sitemapproducts.xml FS_CAT /customers/3/7/f/shop.se//httpd.www/ Server http://www.shop.se Save Path / WS_CAT / Warning: fopen(/sitemapproducts.xml): failed to open stream: Permission denied in /customers/3/7/f/shop.se/httpd.www/googlesitemap/sitemap.class_Alternate.php on line 353 ERROR: Google Product Sitemap Generation FAILED! etc. Any hints will be appreciated. Thanks...
  4. Hi! I've noticed many people just like me having problem with everything working fine except for the Google Pages Sitemap: ERROR: Google Pages Sitemap Generation FAILED! I have spent hours and hours reading through this forum and searching Google but nobody seem to have solved it anywhere. My guess is that it has something to do with that I have two languages. Anyway, I have gone through the code and noticed that in the function "GeneratePagesSitemap()" it never enters the for-loop since count($pages) was always equal to zero. When I hard code this to a number higher than 1, e.g. "$pages = 20;" I finally get a successfull result on everything. Now my sitemappages.xml look like this: ---------------------------------- <?xml version="1.0" encoding="UTF-8"?> <?xml-stylesheet type="text/xsl" href="gss.xsl"?> <urlset xmlns="http://www.google.com/schemas/sitemap/0.84"> <url> <loc></loc> <lastmod></lastmod> <changefreq>weekly</changefreq> <priority>.1</priority> </url> </urlset> ---------------------------------- Does anyone know if this looks like a valid sitemappages.xml file? If not, could you give me an example on how it should look like so I can type it manually? /Johan
×
×
  • Create New...