You are not logged in.
Hello David,
for some reason my site admin quit using the check marks and other icons. I need to know where the image files are located
Thank you
zeldalee
Did you sort this out? Maian Pal uses the FontAwesome toolkit, so icons are created from fonts, not images. Usually the path is wrong in the settings. If you are using www for example in your url, you must make sure your site forces www when loading as none www links may be missing the icons.
Did you sort this out? Maian Pal uses the FontAwesome toolkit, so icons are created from fonts, not images. Usually the path is wrong in the settings. If you are using www for example in your url, you must make sure your site forces www when loading as none www links may be missing the icons.
Hello David,
No I havn't sorted yet. I will have a look at my settings, but where in settings. If I have Base Folder set as https://xxxxx.com is that the problem? Should it be www.xxxx.com? Not sure in where you mean.
Thank you for the direction.
Zeldalee
Last edited by zeldalee (15-02-2021 14:51:23)
The base url must be the same as what you see in the browser. Otherwise browsers like Chrome throw errors about secure content loading over a different url.
So, in your settings if you use www, this is fine, but you must force the site to always load www. It can be done with .htaccess.
The base url must be the same as what you see in the browser. Otherwise browsers like Chrome throw errors about secure content loading over a different url.
So, in your settings if you use www, this is fine, but you must force the site to always load www. It can be done with .htaccess.
Ok David,
I understand to a point. I found this script and edited .htaccess file uploaded, then the site quit working. So I removed the the script. Can you tell me what is wrong with it? The error said site had been redirected too much
#Force www:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^example.com [NC]
RewriteRule ^(.*)$ https://www.example.com/$1 [L,R=301,NC]
Thanks so much
zeldalee
Last edited by zeldalee (17-02-2021 01:35:48)
I assume you replaced example.com with your own domain? I use:
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
Some servers have the option to force www in the control panel.
I assume you replaced example.com with your own domain? I use:
RewriteEngine On RewriteCond %{HTTP_HOST} !^www\. RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
Some servers have the option to force www in the control panel.
Hi David,
so far I have tried everything but no luck. anymore ideas, sorry
zeldalee