View Single Post
  #2  
Old 1st August 2008, 13:54
Fynnon's Avatar
Fynnon Fynnon is offline
xxx
 
Join Date: Nov 2007
P2P
Posts: 984
Default
they should be in your php.ini file and you can access them if you are
using XAMP or WAMP, find and uncommentthe folowing lines:

Code:
magic_quotes_gpc = Off
magic_quotes_runtime = Off
magic_quotes_sybase = Off
If you`re on ahosting company you can try this:

make a .htaccess file if you don`t have one and put in it:
Code:
SetEnv PHPRC /path/to/site/my_php.ini
now make a file called my_php.ini and put in it:

Code:
magic_quotes_gpc = Off
magic_quotes_runtime = Off
magic_quotes_sybase = Off
Reply With Quote