Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Checkout Shipping goes to a blank page.


flyguygj

Recommended Posts

Hello all,

Sorry for the dumb question - but I need some tips in terms of where to start looking. So I set up my oscommerce store with a secure certificate for the checkout. When I click login as a customer and purchase some products everything works great till I try to check out. My checkout_shipping.php page comes up blank. I have a couple of mods installed including the FedEX Direct 2.04.

 

I have tried to copy a new checkout_shipping.php page from the default osc commerce install package, but it still comes up blank. This leads me to believe that perhaps something is wrong in my configure.php file, which I have included below.

 

// Define the webserver and path parameters

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

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

define('HTTP_SERVER', 'http://store.flytorrey.com'); // eg, http://localhost - should not be empty for productive servers

define('HTTPS_SERVER', 'https://store.flytorrey.com'); // eg, https://localhost - should not be empty for productive servers

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

define('HTTP_COOKIE_DOMAIN', 'flytorrey.com');

define('HTTPS_COOKIE_DOMAIN', 'flytorrey.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/');

define('DIR_FS_CATALOG', dirname($HTTP_SERVER_VARS['SCRIPT_FILENAME']) . '/');

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', '*******');

define('DB_SERVER_PASSWORD', '******');

define('DB_DATABASE', 'flytor5_osc1');

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

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

 

It was working a few days ago and I'm not aware of any changes I made to it, but at this point none of my customers can purchase anything. Thanks in advance for the insite. Please help!

 

Gabriel

Link to comment
Share on other sites

I've got the same problem. It seems to be a problem only with firefox. It works fine with IE. Clicking reload in firefox sometimes brings up the page.

 

I actually don't believe that it's Firefox... although I was using firefox, I am having the same problem with Safari and even in Internet Explorer. I have a feeling that somehow one of the includes files that checkout_shipping.php is calling has something wrong with it.

 

Anybody else have any ideas, they sure would be helpful.

 

G

Link to comment
Share on other sites

does it happen when you do not enforce cookies? osc admin->Configuration->Sessions->Force Cookie use set it to false and retry. If it works it means the cookies path is incorrect.

Link to comment
Share on other sites

I have the same problem. Changing the session setup doesn't solve it.

 

I have the register_globals off contrib installed. I had a previous perfectly working os-commerce installed, but this new package doesn't seem to work.

 

your help will be highly appreciated.

Dialup

Link to comment
Share on other sites

then see if it's something to do with the ssl. Set ssl to false and change the https server line to point to http (not https)

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...