Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

checkout_success etc


blueclub

Recommended Posts

Hi there,

 

I'm installing oscommerce, using a shared ssl. Everything goes smoothly but when I complete a purchase and press "continue" it takes me to a page not found. The address shown on the browser is "https://mysharedsecureserver.co.uk/order/index.php?action=notify&notify[]

=&osCsid=0bef5ee1b6f76329cf1da74eefb8ddb9"

 

I see that mydomain doesn't appear in the address (but even if i add it to the address I get a page not found). How can I fix this?

 

Another thing is that on admin I set show fee for minimum orders but ...no show. I tried with free shipping for orders above x but, if I order less, still no show... do I have to configure some files?

 

Can anyone advise/help please?

 

Many thanks

 

Dario

Link to comment
Share on other sites

Hi there,

 

I'm installing oscommerce, using a shared ssl. Everything goes smoothly but when I complete a purchase and press "continue" it takes me to a page not found. The address    shown on the browser is "https://mysharedsecureserver.co.uk/order/index.php?action=notify&notify[]

=&osCsid=0bef5ee1b6f76329cf1da74eefb8ddb9"

 

I see that mydomain doesn't appear in the address (but even if i add it to the address I get a page not found). How can I fix this?

 

Another thing is that on admin I set show fee for minimum orders but ...no show. I tried  with free shipping for orders above x but, if I order less, still no show... do I have to configure some files?

 

Can anyone advise/help please?

 

Many thanks

 

Dario

Link to comment
Share on other sites

 

Hello there,

 

I managed to solve the problem of free shipping (I set it originally to ?0).

Still struggling with the the checkout_success.php page, where, if one clicks "continue " should take to the index page of the catalog (welcome guest...). In my case this doen't happen because the URL of the page I'm redirect to has the name of my domain (which should follow the https domain name stripped. I had a look at other's people configure.php in this forum and they look different from mine. It seems to me that there are some lines missing. can anyone have a look at my configure.php and tell me what is wrong please? Any help would be much appreciated. Thanks.

 

<?php

/*

osCommerce, Open Source E-Commerce Solutions

http://www.oscommerce.com

 

Copyright © 2003 osCommerce

 

Released under the GNU General Public License

*/

 

// Define the webserver and path parameters

// * DIR_FS_* = Filesystem directories (local/physical)

// * DIR_WS_* = Webserver directories (virtual/URL)

define('HTTP_SERVER', 'http://mozzarellashop.co.uk'); // eg, http://localhost - should not be empty for productive servers

define('HTTP_CATALOG_SERVER', 'http://mozzarellashop.co.uk');

define('HTTPS_CATALOG_SERVER', 'https://web3.secure-secure.co.uk');

define('ENABLE_SSL_CATALOG', 'true'); // secure webserver for catalog module

define('DIR_FS_DOCUMENT_ROOT', '/home/sites/mozzarellashop.co.uk/public_html/order/'); // where the pages are located on the server

define('DIR_WS_ADMIN', '/order/admin/'); // absolute path required

define('DIR_FS_ADMIN', '/home/sites/mozzarellashop.co.uk/public_html/order/admin/'); // absolute pate required

define('DIR_WS_CATALOG', '/order/'); // absolute path required

define('DIR_FS_CATALOG', '/home/sites/mozzarellashop.co.uk/public_html/order/'); // absolute path required

define('DIR_WS_IMAGES', 'images/');

define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');

define('DIR_WS_CATALOG_IMAGES', DIR_WS_CATALOG . 'images/');

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_CATALOG_LANGUAGES', DIR_WS_CATALOG . 'includes/languages/');

define('DIR_FS_CATALOG_LANGUAGES', DIR_FS_CATALOG . 'includes/languages/');

define('DIR_FS_CATALOG_IMAGES', DIR_FS_CATALOG . 'images/');

define('DIR_FS_CATALOG_MODULES', DIR_FS_CATALOG . 'includes/modules/');

define('DIR_FS_BACKUP', DIR_FS_ADMIN . 'backups/');

 

// define our database connection

define('DB_SERVER', 'localhost'); // eg, localhost - should not be empty for productive servers

define('DB_SERVER_USERNAME', 'XXXXXXXXXX');

define('DB_SERVER_PASSWORD', 'XXXXXXXXXX');

define('DB_DATABASE', 'XXXXXXXXXXX :huh: ');

define('USE_PCONNECT', 'false'); // use persisstent connections?

define('STORE_SESSIONS', 'mysql'); // leave empty '' for default handler or set to 'mysql'

?>

Link to comment
Share on other sites

That's your admin/includes/configure.php (which looks fine).  The one you need to post is your includes/configure.php file.

 

Vger

 

Thanks Vger, here is my includes/configure.php.

 

<?php

/*

osCommerce, Open Source E-Commerce Solutions

http://www.oscommerce.com

 

Copyright © 2003 osCommerce

 

Released under the GNU General Public License

*/

 

// Define the webserver and path parameters

// * DIR_FS_* = Filesystem directories (local/physical)

// * DIR_WS_* = Webserver directories (virtual/URL)

define('HTTP_SERVER', 'http://mozzarellashop.co.uk'); // eg, http://localhost - should not be empty for productive servers

define('HTTPS_SERVER', 'https://web3.secure-secure.co.uk'); // eg, https://localhost - should not be empty for productive servers

define('ENABLE_SSL', true); // secure webserver for checkout procedure?

define('HTTP_COOKIE_DOMAIN', 'mozzarellashop.co.uk');

define('HTTPS_COOKIE_DOMAIN', 'web3.secure-secure.co.uk');

define('HTTP_COOKIE_PATH', '/order/');

define('HTTPS_COOKIE_PATH', '/mozzarellashop.co.uk/order/');

define('DIR_WS_HTTP_CATALOG', '/order/');

define('DIR_WS_HTTPS_CATALOG', '/mozzarellashop.co.uk/order/');

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', '/home/sites/mozzarellashop.co.uk/public_html/order/');

define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');

define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');

 

// define our database connection

define('DB_SERVER', 'localhost'); // eg, localhost - should not be empty for productive servers

define('DB_SERVER_USERNAME', 'XXXXXXXX');

define('DB_SERVER_PASSWORD', 'XXXXXXXX');

define('DB_DATABASE', 'XXXXXXX');

define('USE_PCONNECT', 'false'); // use persistent connections?

define('STORE_SESSIONS', 'mysql'); // leave empty '' for default handler or set to 'mysql'

?>

Link to comment
Share on other sites

Make this to be like so:

 

define('HTTPS_SERVER', 'https://web3.secure-secure.co.uk/mozzarellashop.co.uk');

 

then make this like so:

 

define('DIR_WS_HTTPS_CATALOG', '/order/');

 

If that does not work then leave the https_cookie_domain and https_cookie_path blank.

 

Vger

Link to comment
Share on other sites

Make this to be like so:

 

define('HTTPS_SERVER', 'https://web3.secure-secure.co.uk/mozzarellashop.co.uk');

 

then make this like so:

 

define('DIR_WS_HTTPS_CATALOG', '/order/');

 

If that does not work then leave the https_cookie_domain and https_cookie_path blank.

 

Vger

 

Many thanks Vger, now it works! It was sufficient to change the name server, without leaving the https_cookie_domain and https_cookie_path blank. Thanks again.

Dario

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...