Question marks and mysterious symbol visible on site. Why?

kumkumsharma

Administrator
Staff member
The main reasons of these mysterious symbols are incorrect database or page encoding. You website should have UTF-8 meta tag and also you can change page encoding.

Code:
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
To resolve this error you can also add below line to your index.php file.

Code:
header('Content-Type: text/html; charset=utf-8');
If you will find your website is using UTF8 with BOM then it is must to make it UTF8 without BOM. Also you have to use notepad++ for file encoding.
 
Top