Do you possibly have anything in your .htaccess file, redirecting the URL?
Below, Sample admin config:
make sure LINKS/PATHS direct to the correct Server URL/Server-Path.
Code: Select all
// HTTP
define('HTTP_SERVER', 'http://www.bigmax.ch/shop/admin/');
define('HTTP_CATALOG', 'http://www.bigmax.ch/shop/');
define('HTTP_IMAGE', 'http://www.bigmax.ch/shop/image/');
// HTTPS
define('HTTPS_SERVER', 'http://www.bigmax.ch/shop/admin/');
define('HTTPS_CATALOG', 'http://www.bigmax.ch/shop/');
define('HTTPS_IMAGE', 'http://www.bigmax.ch/shop/image/');
// DIR
define('DIR_APPLICATION', '/home/jacob/server/www/bigmax/shop/admin/');
define('DIR_SYSTEM', '/home/jacob/server/www/bigmax/shop/system/');
define('DIR_DATABASE', '/home/jacob/server/www/bigmax/shop/system/database/');
define('DIR_LANGUAGE', '/home/jacob/server/www/bigmax/shop/admin/language/');
define('DIR_TEMPLATE', '/home/jacob/server/www/bigmax/shop/admin/view/template/');
define('DIR_CONFIG', '/home/jacob/server/www/bigmax/shop/system/config/');
define('DIR_IMAGE', '/home/jacob/server/www/bigmax/shop/image/');
define('DIR_CACHE', '/home/jacob/server/www/bigmax/shop/system/cache/');
define('DIR_DOWNLOAD', '/home/jacob/server/www/bigmax/shop/download/');
define('DIR_LOGS', '/home/jacob/server/www/bigmax/shop/system/logs/');
define('DIR_CATALOG', '/home/jacob/server/www/bigmax/shop/catalog/');
Good Luck
Ernie