Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Checkout not found


brimsjewelry

Recommended Posts

I had a similar problem with page not found . i seem to have sorted that one out but now i am getting an error displayed on the page saying fatal error in checkout_address call to undefined function in line 79.

 

also how do you turn off SSL

 

the site is at www.stylissimo.co.uk/catalog

 

all suggestions welcome

Link to comment
Share on other sites

The reason is because there are a few variable in your configure.php files that are not defined.

The below variables need to be accurate and. the https define does not need to be filled out.

 

define('HTTP_SERVER', 'http://www.[yourserver].com'); // eg, http://localhost - should not be NULL for productive servers

define('HTTPS_SERVER', ''); // eg, https://localhost - should not be NULL for productive servers

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

 

// define our database connection

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

define('DB_SERVER_USERNAME', '[username]);

define('DB_SERVER_PASSWORD', '[password]');

define('DB_DATABASE', '[database]');

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

Archived

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

×
×
  • Create New...