Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Shared SSL / Account Login Problem


Thor37

Recommended Posts

Hi Everyone.

 

Thanks for a great e-cart. This is really one of the best free e-cart scripts out there. :thumbsup:

 

I have a problem after i changed the shop/includes/configure.php and

shop/admin/configuration.php to run on shared SSL.

 

It does not seem to work. Everytime i try to login as a member i'm taken to my index page. :blink:

 

I've gone over some posts here at the forum and seen that there have been people having

problems configuring osc running with shared SSL. Tryed a couple of changes but can't seem

to figure this out. The company i'm working for are not to happy about me not getting any

sales because people can't login. I hope that out there there is a kind soul who have had the

same problem, that can tell me what's wrong here. :'(

 

 

Here is my shop/includes/configure.php

 

 

 

// Define the webserver and path parameters

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

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

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

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

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

define('HTTP_COOKIE_DOMAIN', 'www.designjewellers.com');

define('HTTPS_COOKIE_DOMAIN', 'pro27.abac.com/designjewellers');

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

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

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

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

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/com/designjewellers/html/osc2/');

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

define('DB_SERVER_PASSWORD', 'password');

define('DB_DATABASE', 'databasename');

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

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

?>

 

------------------------------------------------------------------------------------

 

And this is my shop/admin/configuration.php

 

// Define the webserver and path parameters

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

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

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

define('HTTP_CATALOG_SERVER', 'http://www.designjewellers.com');

define('HTTPS_CATALOG_SERVER', 'https://pro27.abac.com/designjewellers');

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

define('DIR_FS_DOCUMENT_ROOT', '/home/com/designjewellers/html/osc2/'); // where the pages are located on the server

define('DIR_WS_ADMIN', '/osc2/admin132/'); // absolute path required

define('DIR_FS_ADMIN', '/home/com/designjewellers/html/osc2/admin132/'); // absolute pate required

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

define('DIR_FS_CATALOG', '/home/com/designjewellers/html/osc2/'); // 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', 'username');

define('DB_SERVER_PASSWORD', 'password');

define('DB_DATABASE', 'databasename');

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

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

?>

 

 

Also i've read a post that some changes was done in shop/includes/application_top.php and

shop/includes/general.js. I did a couple of changes but without luck. :(

 

Thank you for a good forum. :thumbsup:

Thor37

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...