Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Create & Login Account just refreshes and does nothing


potatocake

Recommended Posts

Posted

Hi,

 

I was wondering if anyone could help me with this problem. I have installed OsCommerce on to my server and also STS templates. I have modified how my index.php should look like also when I go to the My Account and Create Account page it loads fine. However when I fill in and try to create a user it just refreshes and does nothing. The validation does not even come up. Same goes for login, with the default user: John Doe that comes with the Oscommerce installation. It refreshes and displays the same page with the fields intact except for cleared password.

 

I am using a shared server and my connection to the database is in the correct format. I have read posts that deal with this problem and still have not found a solution to my problem. Could anyone help me on this issue please.

 

Heres my catalog/includes/configure.php:

<?php
 define('HTTP_SERVER', 'http://d3bakery.com');
 define('HTTPS_SERVER', 'https://d3bakery.com');
 define('ENABLE_SSL', false);
 define('HTTP_COOKIE_DOMAIN', 'd3bakery.com');
 define('HTTPS_COOKIE_DOMAIN', 'd3bakery.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', '/home/d3bakery/public_html/');
 define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
 define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');

 define('DB_SERVER', 'localhost');
 define('DB_SERVER_USERNAME', '******');
 define('DB_SERVER_PASSWORD', '******');
 define('DB_DATABASE', 'd3bakery_osc1');
 define('USE_PCONNECT', 'false');
 define('STORE_SESSIONS', 'mysql');
?>

 

Heres my admin/includes/configure.php:

<?php
 define('HTTP_SERVER', 'http://d3bakery.com');
 define('HTTP_CATALOG_SERVER', 'http://d3bakery.com');
 define('HTTPS_CATALOG_SERVER', 'https://d3bakery.com');
 define('ENABLE_SSL_CATALOG', false);
 define('DIR_FS_DOCUMENT_ROOT', '/home/d3bakery/public_html/');
 define('DIR_WS_ADMIN', '/admin/');
 define('DIR_FS_ADMIN', '/home/d3bakery/public_html/admin/');
 define('DIR_WS_CATALOG', '/');
 define('DIR_FS_CATALOG', '/home/d3bakery/public_html/');
 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('DB_SERVER', 'localhost');
 define('DB_SERVER_USERNAME', '*****');
 define('DB_SERVER_PASSWORD', '****');
 define('DB_DATABASE', 'd3bakery_osc1');
 define('USE_PCONNECT', 'false');
 define('STORE_SESSIONS', 'mysql');
?>

 

Thanks

Archived

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

×
×
  • Create New...