Page 1 of 1

OpenCart Error on Admin Panel Home

Posted: Tue Jul 12, 2016 2:51 pm
by lawsonian
Anyone knows how to fix that? :( :(

Thanks.

Re: OpenCart Error on Admin Panel Home

Posted: Tue Jul 12, 2016 4:11 pm
by impairedspook
Hi lawsonian,

The font awesome icons generally will display as squares when you go to your site using a different URL that is specified in your config files... example, if your config file has

Code: Select all

define('HTTP_SERVER', 'http://www.example.com/');
but your visit your site using

Code: Select all

http://example.com
You will see the squares instead of the proper icons

You want to check config.php in your home directory along with admin/config.php. I would recommend deciding on a URL (with or without www), making sure both config files specify what you have decided to use and then setup a 301 redirect to redirect the URL you are not using to the one you have decided on...

Hope this helps :)

(Sorry copied and pasted answer from one of my previous posts, this refers to your main store but will be the same logic for the admin side...)

Re: OpenCart Error on Admin Panel Home

Posted: Tue Jul 12, 2016 7:12 pm
by lawsonian
impairedspook wrote:Hi lawsonian,

The font awesome icons generally will display as squares when you go to your site using a different URL that is specified in your config files... example, if your config file has

Code: Select all

define('HTTP_SERVER', 'http://www.example.com/');
but your visit your site using

Code: Select all

http://example.com
You will see the squares instead of the proper icons

You want to check config.php in your home directory along with admin/config.php. I would recommend deciding on a URL (with or without www), making sure both config files specify what you have decided to use and then setup a 301 redirect to redirect the URL you are not using to the one you have decided on...

Hope this helps :)

(Sorry copied and pasted answer from one of my previous posts, this refers to your main store but will be the same logic for the admin side...)
Thanks!