This is a discussion on 404 on checkout_success.php within the osCMax v1.7 Discussion forums, part of the osCMax v1.7 Forums category; Hi, I just made a stock install of MS2-MAX 1.5 and am very impressed with the bundled features (I have ...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
|
#1
| |||
| |||
| Hi, I just made a stock install of MS2-MAX 1.5 and am very impressed with the bundled features (I have a regular OSc store also and will consider using this on the next upgrade) Anyway this install is completely stock so far and I am just testing out the features as my client will need the credit card module. I am using shared SSL which seems to work ok when entering the credit card details. We get as far as the "Your order has been processed - thanks for shopping" etc message and then pressing continue is giving an 404 Page not found error on the following url https://svr18.edns1.com/~books3c/che...p;osCsid=xxxxx Checkout success is obviously there and if I strip back the query string it seems to work ok. So I am thinking its the action=update causing the problems. Has anyone had this happen before and if so whats the remedy? Thanks, Steveo |
| Sponsored Links | ||
| ||
|
#2
| |||
| |||
| just for the record in case anyone else is having problems with this I have managed to fix it. And this applies to all Oscommerce Editions not just the MAX version as I installed the standard version this morning and it had the same problem. Anyway here is my configure.php Code: // Define the webserver and path parameters
// * DIR_FS_* = Filesystem directories (local/physical)
// * DIR_WS_* = Webserver directories (virtual/URL)
define('HTTP_SERVER', 'http://www.3cbooksupplies.co.uk'); // eg, http://localhost - should not be empty for productive servers
define('HTTPS_SERVER', 'https://svr18.edns1.com/~books3c'); // eg, https://localhost - should not be empty for productive servers
define('ENABLE_SSL', true); // secure webserver for checkout procedure?
define('HTTP_COOKIE_DOMAIN', 'www.3cbooksupplies.co.uk');
define('HTTPS_COOKIE_DOMAIN', 'svr18.edns1.com/~books3c');
define('HTTP_COOKIE_PATH', '/');
define('HTTPS_COOKIE_PATH', '/');
define('DIR_WS_HTTP_CATALOG', '/');
define('DIR_WS_HTTPS_CATALOG', '/');
|
|
#3
| ||||
| ||||
| Hi, I have had this problem on a couple setups. I finally found this post and apparently solved the problem. I thought I would post another example with a non-root catalog. This is the config that works. Code: define('HTTP_SERVER', 'http://www.bibleinlivingsound.org'); // eg, http://localhost - should not be empty for productive servers
define('HTTPS_SERVER', 'https://www.gospelcom.net/bls'); // eg, https://localhost - should not be empty for productive servers
define('ENABLE_SSL', true); // secure webserver for checkout procedure?
define('HTTP_COOKIE_DOMAIN', 'www.bibleinlivingsound.org/bls');
define('HTTPS_COOKIE_DOMAIN', 'www.gospelcom.net');
define('HTTP_COOKIE_PATH', '/catalog/');
define('HTTPS_COOKIE_PATH', '/catalog/');
define('DIR_WS_HTTP_CATALOG', '/catalog/');
define('DIR_WS_HTTPS_CATALOG', '/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/');
/* removed for bts 1.2a
//Added for BTS1.0
define('DIR_WS_TEMPLATES', 'templates/');
define('DIR_WS_CONTENT', DIR_WS_TEMPLATES . 'content/');
define('DIR_WS_JAVASCRIPT', DIR_WS_INCLUDES . 'javascript/');
//End BTS1.0
*/
define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/');
define('DIR_FS_CATALOG', '/usr/local/www/gospelcom/docs/bls/catalog/');
define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');
Code: define('HTTP_SERVER', 'http://www.bibleinlivingsound.org'); // eg, http://localhost - should not be empty for productive servers
define('HTTPS_SERVER', 'https://www.gospelcom.net'); // eg, https://localhost - should not be empty for productive servers
define('ENABLE_SSL', true); // secure webserver for checkout procedure?
define('HTTP_COOKIE_DOMAIN', 'www.bibleinlivingsound.org');
define('HTTPS_COOKIE_DOMAIN', 'www.gospelcom.net');
define('HTTP_COOKIE_PATH', '/catalog/');
define('HTTPS_COOKIE_PATH', '/catalog/');
define('DIR_WS_HTTP_CATALOG', '/catalog/');
define('DIR_WS_HTTPS_CATALOG', '/bls/catalog/');
Cheers, Tim |
| Sponsored Links | ||
| ||
| |
| Thread Tools | |
| |
| ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| how to get the order total on checkout_success.php ? | johnr3 | osCMax v2 Customization/Mods | 0 | 06-17-2006 09:23 AM |
| checkout_success parsing error | nyblx | osCommerce 2.2 Modification Help | 3 | 01-27-2006 10:20 AM |
| Checkout_Success Page error | GeorgeW | osCMax v2 Installation issues | 7 | 09-27-2005 04:57 PM |
| setup checkout_success | navid | osCommerce 2.2 Installation Help | 0 | 06-30-2004 03:33 PM |
| Paypal IPN setings for checkout_success.php ? | EstherPerez | osCommerce 2.2 Installation Help | 2 | 03-11-2004 09:24 AM |