
Originally Posted by
lhungil
Double check /admin/includes/configure.php especially the 'HTTP_SERVER' and 'HTTPS_SERVER' defines. Make sure there is a trailing slash and the server name is correct (for example: 'http://www.zen-cart.com/').
Correct me if I am wrong, but the last time I checked, there should be NO trailing slash in the url, see the comments in the config files.
PHP Code:
// Define the webserver and path parameters
// HTTP_SERVER is your Main webserver: eg-http://www.yourdomain.com
// HTTPS_SERVER is your Secure webserver: eg-https://www.yourdomain.com
define('HTTP_SERVER', 'http://localhost');
define('HTTPS_SERVER', 'https://localhost');
// Use secure webserver for checkout procedure?
define('ENABLE_SSL', 'false');
// NOTE: be sure to leave the trailing '/' at the end of these lines if you make changes!
// * DIR_WS_* = Webserver directories (virtual/URL)
// these paths are relative to top of your webspace ... (ie: under the public_html or httpdocs folder)
define('DIR_WS_CATALOG', '/');
define('DIR_WS_HTTPS_CATALOG', '/');