Resolved Your host needs to disable magic_quotes_gpc to run this version of Joomla
In the Joomla 3 once you setup the server on live website then once you will start browsing the admin section of the website by just typing http://www.yourweb.com/administrator . You might see the error “Your host needs to disable magic_quotes_gpc to run this version of Joomla! “.
Why you get the error “Your host needs to disable magic_quotes_gpc to run this version of Joomla!“
This error comes if magic_quotes_gpc is enabled on your web server because it was already got enabled on some servers and after PHP 5.4 its been removed so there is no need for it.
How to resolve error “Your host needs to disable magic_quotes_gpc to run this version of Joomla!“.
By removing error through .htaccess
Don’t try for it !! it wouldn’t work
Resolving error by creating php5.ini (make sure you are using php5 based server)
Create a new file named php5.ini (make sure its extension should be .ini only) and write below code into it.
magic_quotes_gpc=”0″;
magic_quotes_runtime = Off;
magic_quotes_sybase = Off;
zend_extension=/usr/local/php53/lib/php/extensions/ioncube.so;
zend_extension=/usr/local/php53/lib/php/extensions/ZendOptimizer.so;
make sure you end the line with ; only.
Upload this php5.ini file to your website’s root directory.
Chandra Shekhar
Latest posts by Chandra Shekhar (see all)
- Best practices for micro service design - January 23, 2022
- Spring Boot - January 23, 2022
- Java - January 23, 2022
Recent Comments