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: Double Home Tab In WordPress Theme Hi, Problem Summary: I have added static home page on...
  2. Case Study: Can Not Publish A Post – WordPress Blog Hi, Problem Summary: I have setup the wordpress blog and...
  3. Case Study: Permalink 404 error on WordPress Blog Hi, Problem summary: Permalink 404 arise thrown when change the...
  4. Case Study: HTTP Error: Crunching Error On WordPress Blog Hi, I am receiving HTTP Error – Crinching error on...
  5. Case Study: I have enabled SEF/Short URLs to My Blog and receiving “404 Not Found” Error Hi, Problem Summary: One of our client has enabled SEF/Short...

Leave a Reply

You must be logged in to post a comment.