View Single Post
  #4  
Old 11th April 2011, 17:50
Fynnon's Avatar
Fynnon Fynnon is offline
xxx
 
Join Date: Nov 2007
P2P
Posts: 984
Default
Quote:
Originally Posted by Ahmed Abed View Post
Please explain me how to do it ??
first tell me what is your hosting, your own pc (xampp), shared or vps (dedicated) hosting?
if its shared hosting you dont have access to php.ini, if its the another hoting then search ph.ini and comment out that line or put it on OFF

example from vps php.ini file:

Code:
; Magic quotes
  
; Magic quotes for incoming GET/POST/Cookie data. 
magic_quotes_gpc = Off

; Magic quotes for runtime-generated data, e.g. data from SQL, from exec(), etc. 
magic_quotes_runtime = Off

; Use Sybase-style magic quotes (escape ' with '' instead of \'). 
magic_quotes_sybase = Off
example from XAMPP php.ini file:
Code:
; magic_quotes_gpc

;   Default Value: On
;   Development Value: Off
;   Production Value: Off
http://php.net/manual/en/security.ma....disabling.php
Reply With Quote