My version is 1.5.4, the site has been working for several years, hosted with godaddy php 5.3. Recently all of a sudden this problem shows up: On login page, after I put in the correct username/password, instead of showing the dashboard page, it stays at login page without any error message..
I suppose the login is successful because if I put in wrong password an error message will show.
Some say this is possibly because the www/non-www redirect setting in config file, here are both of my config files, I've tried putting in "www" or not for the URLs, but none worked.
Part of config.php under "admin" folder:
Code: Select all
define('HTTP_SERVER', 'http://newyorkliquorgiftshop.com/admin/');
define('HTTP_CATALOG', 'http://newyorkliquorgiftshop.com/');
// HTTPS
define('HTTPS_SERVER', 'https://newyorkliquorgiftshop.com/admin/');
define('HTTPS_CATALOG', 'https://newyorkliquorgiftshop.com/');
// DIR
define('DIR_APPLICATION', '/home/content/55/5307955/html/admin/');
define('DIR_SYSTEM', '/home/content/55/5307955/html/system/');
define('DIR_DATABASE', '/home/content/55/5307955/html/system/database/');
define('DIR_LANGUAGE', '/home/content/55/5307955/html/admin/language/');
define('DIR_TEMPLATE', '/home/content/55/5307955/html/admin/view/template/');
define('DIR_CONFIG', '/home/content/55/5307955/html/system/config/');
define('DIR_IMAGE', '/home/content/55/5307955/html/image/');
define('DIR_CACHE', '/home/content/55/5307955/html/system/cache/');
define('DIR_DOWNLOAD', '/home/content/55/5307955/html/download/');
define('DIR_LOGS', '/home/content/55/5307955/html/system/logs/');
define('DIR_CATALOG', '/home/content/55/5307955/html/catalog/');
Code: Select all
// HTTP
define('HTTP_SERVER', 'http://newyorkliquorgiftshop.com/');
// HTTPS
define('HTTPS_SERVER', 'https://newyorkliquorgiftshop.com/');
// DIR
define('DIR_APPLICATION', '/home/content/55/5307955/html/catalog/');
define('DIR_SYSTEM', '/home/content/55/5307955/html/system/');
define('DIR_DATABASE', '/home/content/55/5307955/html/system/database/');
define('DIR_LANGUAGE', '/home/content/55/5307955/html/catalog/language/');
define('DIR_TEMPLATE', '/home/content/55/5307955/html/catalog/view/theme/');
define('DIR_CONFIG', '/home/content/55/5307955/html/system/config/');
define('DIR_IMAGE', '/home/content/55/5307955/html/image/');
define('DIR_CACHE', '/home/content/55/5307955/html/system/cache/');
define('DIR_DOWNLOAD', '/home/content/55/5307955/html/download/');
define('DIR_LOGS', '/home/content/55/5307955/html/system/logs/');