I have this very annoying issue that gives me backslashes when for example I post a new topic and there are some quotes on it.
Quotes are escaped, so for example is I write : "That's so cool", then I get "That\'s so cool" and it's not cool at all!
I am aware about the magic quotes and I checked already that they are off in every directory of my bbpress install.
I've put php.ini files with "magic_quotes_gpc = Off" in every directory of my bbpress install and checked with a php script containing the code below :
if(get_magic_quotes_gpc()==1)
{
echo “its on”;
}
else
{
echo “its off”;
}
and it is always returning 'off'
Furthermore I also did a grep in every php.ini file in my system and the variable is equal to off everywhere!
So I'm pretty sure this problem is coming from somewhere else.
Also this problem started to appear when I migrated my site in another server which I usually administrate via Plesk.
I use version 9 of bbPress at the moment, with a deep integration with wordpress, which has also the same kind of php.ini file in it.
I hope someone can help to solve this mystery!!