Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

No orders in firefox


Sander2005

Recommended Posts

Posted

My shop works fine in MSIE, but when i try to place an order in firefox, it doesnt work, the shopping cart doesnt empty and the order is not placed.

 

What could cause this?

 

shop: http://www.owg.nl/osc2/catalog/

it's an OSC 2.2MS2 with some contributions installed.

- ship2pay

- products extra fields

- order editor 1.21

Posted
My shop works fine in MSIE, but when i try to place an order in firefox, it doesnt work, the shopping cart doesnt empty and the order is not placed.

 

What could cause this?

 

shop: http://www.owg.nl/osc2/catalog/

it's an OSC 2.2MS2 with some contributions installed.

- ship2pay

- products extra fields

- order editor 1.21

Check the cookies setting in Firefox

 

Steve

Posted

cookies are enabled in the broser. it also happens on every computer, it just wont process the order.

 

it act's like it does, but the shopping cart isnt emptied and the order isnt placed, and i dont receive an mail either.

Posted

I assume it must be a problem with ship2pay because I've never before come across a problem using Firefox with osC. Is your store live?

Posted

This is almost always a cookie problem caused by incorrect settings in catalog/includes/configure.php

 

If you post the file (without db user and password) we can check it.

Local: Mac OS X 10.5.8 - Apache 2.2/php 5.3.0/MySQL 5.4.10 • Web Servers: Linux

Tools: BBEdit, Coda, Versions (Subversion), Sequel Pro (db management)

Posted

Fix your cookie domain in catalog/includes/configure.php

 

Cookie Information - http://www.owg.nl/osc2/catalog/login.php

http://www.owg.nl/osc2/catalog/login.php

Name cookie_test

Value please_accept_for_session

Host owg.nl

Path /osc2/catalog/

Secure No

Expires Sat, Nov 12, 2005 10:33:49 AM

 

Name osCsid

Value baef286f05619aca48c400c5ba2ffa60

Host owg.nl

Path /osc2/catalog/

Secure No

Expires At End Of Session

Local: Mac OS X 10.5.8 - Apache 2.2/php 5.3.0/MySQL 5.4.10 • Web Servers: Linux

Tools: BBEdit, Coda, Versions (Subversion), Sequel Pro (db management)

Posted

this is my 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://www.owg.nl'); // eg, http://localhost - should not be empty for productive servers

define('HTTPS_SERVER', 'https://www.owg.nl'); // eg, https://localhost - should not be empty for productive servers

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

define('HTTP_COOKIE_DOMAIN', 'www.owg.nl');

define('HTTPS_COOKIE_DOMAIN', 'www.owg.nl');

define('HTTP_COOKIE_PATH', '/osc2/catalog/');

define('HTTPS_COOKIE_PATH', '/osc2/catalog/');

define('DIR_WS_HTTP_CATALOG', '/osc2/catalog/');

define('DIR_WS_HTTPS_CATALOG', '/osc2/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', '/home/xxxxxxxxxx/fst/var/www/html/site/osc2/catalog/');

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

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

 

// define our database connection

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

define('DB_SERVER_USERNAME', 'xxxxxxx');

define('DB_SERVER_PASSWORD', 'xxxxxxxxxxx');

define('DB_DATABASE', 'xxxxxxxxxxxxxxxxxxxxx');

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

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

 

// STS: ADD: Define Simple Template System files

define('STS_START_CAPTURE', DIR_WS_INCLUDES . 'sts_start_capture.php');

define('STS_STOP_CAPTURE', DIR_WS_INCLUDES . 'sts_stop_capture.php');

define('STS_RESTART_CAPTURE', DIR_WS_INCLUDES . 'sts_restart_capture.php');

define('STS_TEMPLATE_DIR', DIR_WS_INCLUDES . 'sts_templates/');

define('STS_DEFAULT_TEMPLATE', DIR_WS_INCLUDES . 'sts_template.html');

define('STS_DISPLAY_OUTPUT', DIR_WS_INCLUDES . 'sts_display_output.php');

define('STS_USER_CODE', DIR_WS_INCLUDES . 'sts_user_code.php');

define('STS_PRODUCT_INFO', DIR_WS_INCLUDES . 'sts_product_info.php');

// STS: EOADD

?>

 

 

i just changed cookie domain from owg.nl to www.owg.nl

 

but it still doesnt work, what should be changed?

Archived

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

×
×
  • Create New...