[Solved] Admin panel left navigation panel
Posted: Mon Apr 04, 2022 10:23 pm
Upon having my 3.0.3.8 site go live, I'm having minor issues with the navigation panel. The left pane is scrunched. Although it works, it is a bit annoying.
I'm guessing it has to do with something in the admin/config.php filed posted below. Any specific ideas?
<?php
// HTTP
define('HTTP_SERVER', 'https://xxxx.com/admin/');
define('HTTP_CATALOG', 'https:/xxxx.com/');
// HTTPS
define('HTTPS_SERVER', 'https://xxxx.com/admin/');
define('HTTPS_CATALOG', 'https://xxxx.com/');
// DIR
define('DIR_APPLICATION', '/home/keepitp1/public_html/xxxx.com/admin/');
define('DIR_SYSTEM', '/home/keepitp1/public_html/xxxx.com/system/');
define('DIR_IMAGE', '/home/keepitp1/public_html/xxxx.com/image/');
define('DIR_STORAGE', '/home/keepitp1/storage/');
define('DIR_CATALOG', '/home/keepitp1/public_html/xxxx/catalog/');
define('DIR_LANGUAGE', DIR_APPLICATION . 'language/');
define('DIR_TEMPLATE', DIR_APPLICATION . 'view/template/');
define('DIR_CONFIG', DIR_SYSTEM . 'config/');
define('DIR_CACHE', DIR_STORAGE . 'cache/');
define('DIR_DOWNLOAD', DIR_STORAGE . 'download/');
define('DIR_LOGS', DIR_STORAGE . 'logs/');
define('DIR_MODIFICATION', DIR_STORAGE . 'modification/');
define('DIR_SESSION', DIR_STORAGE . 'session/');
define('DIR_UPLOAD', DIR_STORAGE . 'upload/');
I'm guessing it has to do with something in the admin/config.php filed posted below. Any specific ideas?
<?php
// HTTP
define('HTTP_SERVER', 'https://xxxx.com/admin/');
define('HTTP_CATALOG', 'https:/xxxx.com/');
// HTTPS
define('HTTPS_SERVER', 'https://xxxx.com/admin/');
define('HTTPS_CATALOG', 'https://xxxx.com/');
// DIR
define('DIR_APPLICATION', '/home/keepitp1/public_html/xxxx.com/admin/');
define('DIR_SYSTEM', '/home/keepitp1/public_html/xxxx.com/system/');
define('DIR_IMAGE', '/home/keepitp1/public_html/xxxx.com/image/');
define('DIR_STORAGE', '/home/keepitp1/storage/');
define('DIR_CATALOG', '/home/keepitp1/public_html/xxxx/catalog/');
define('DIR_LANGUAGE', DIR_APPLICATION . 'language/');
define('DIR_TEMPLATE', DIR_APPLICATION . 'view/template/');
define('DIR_CONFIG', DIR_SYSTEM . 'config/');
define('DIR_CACHE', DIR_STORAGE . 'cache/');
define('DIR_DOWNLOAD', DIR_STORAGE . 'download/');
define('DIR_LOGS', DIR_STORAGE . 'logs/');
define('DIR_MODIFICATION', DIR_STORAGE . 'modification/');
define('DIR_SESSION', DIR_STORAGE . 'session/');
define('DIR_UPLOAD', DIR_STORAGE . 'upload/');