Tell me more ×
WordPress Answers is a question and answer site for WordPress developers and administrators. It's 100% free, no registration required.

My wordpress site [WordPress 3.3.1] shows weird characters in content after moving to a new server. But in my local server its working fine.

For example it shows we're solving as we’re solving!

In my wp-config file i have the following charset

define('DB_CHARSET', 'utf8');
define('DB_COLLATE', '');

I have the same "utf8_general_ci" collation in both local and new server database.

share|improve this question
Your UTF-8 is sent as windows-1252. Fix the HTTP header. – toscho Aug 7 '12 at 10:46

1 Answer

Make sure "Encoding for pages and feeds" is set as "UTF-8" under Settings ⇒ Reading.

enter image description here

share|improve this answer
I have changed the encoding in settings=>reading tab to "UTF-8" But still the content is showing weired characters! I have checked the header info of the site by using firebug, it shows Content-Encoding gzip Content-Type text/html; charset=UTF-8 – Lakshmanan PHP Aug 8 '12 at 10:36
Sounds like you've got a caching plugin enabled? If so, clear out the cache & try again. Failing that, disable the plugin. – TheDeadMedic Aug 8 '12 at 10:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.