Hi,

Problem Summary: When I try to write a post in my blog all single quotes are replaced with double quotes. Just an example if I write You’ll check it becomes You”ll.

Possible Solutions:

1) Please deactivate all the plugins. Enable plugin one by one and check the result with your post output. Because there is a high possiblity that It may cause the issue with your post/database.

2) Check that magic_quotes_runtime variable setting in the php.ini is turned off on your web server. If it is enable then affects runtime generated data such as data from SQL queries. If it is enable then we can disable it from .htaccess file. Please use this code:

# BEGIN WordPress

<IfModule mod_rewrite.c>

RewriteEngine On

php_value magic_quotes_gpc 0

php_flag magic_quotes_runtime 0

</IfModule>

# END WordPress

Thanks,

Shane G.

Popularity: 10%

Related posts:
  1. Case Study: Can Not Publish A Post – Wordpress Blog Hi, Problem Summary: I have setup the wordpress blog and...
  2. How To Disable/Enable Mod_Security For wordpress Blog? Hi, We can disable mod_security feature for wordpress blog by...
  3. Case Study: Permalink 404 error on Wordpress Blog Hi, Problem summary: Permalink 404 arise thrown when change...
  4. Case Study: HTTP Error: Crunching Error On Wordpress Blog Hi, I am receiving HTTP Error – Crinching error on...
  5. Case Study: File URL and Post URL buttons are there but does not work. Hi, I am able to view the File URL and...

Leave a Reply

You must be logged in to post a comment.