Magic Quotes

IF you are on shared hosting, you need to ask them.
Unless you would know how to do a php.ini file to disable magic quotes.
 
yes, you would just need to edit the php.ini file. I would talk to your host, they should be able to do this for you.
 
Just to add to what everyone else has already said, you should just need to uncomment this line in the php.ini file to disable that.

# grep magic_quotes_gpc /usr/local/lib/php.ini
;magic_quotes_gpc = Off
 
There might be a pho configuration section I believe.
 
That's right, if you go to the WHM > PHP Configuration Editor, then pick Advanced Mode, you can scroll down to magic_quotes_gpc, then click the edit button on the far right. Then it turns into an on/off button, so you just have to choose off and save at the bottom.
 
That's exactly how you do it 😉

Thought it be something like that
 
Back
Top Bottom