Deprecated: Function get_magic_quotes_gpc() is deprecated in C:\wamp\www\magento\app\code\core\Mage\Core\functions.php on line 32 .
I m getting this error at time of installation plz some one can fix this?
Solved! Go to Solution.
Hello @ali_lena,
Can you please share error with us?
--
If my answer is useful, please Accept as Solution & give Kudos
I had gone through that but as i m using magento 1.9.3.10 and wamp 5.4 .... but this is showing the error ....
Plz let me know is there any other solution for this....
Hello @ali_lena,
Can you please share error with us?
--
If my answer is useful, please Accept as Solution & give Kudos
Hi @ali_lena
You need to disabled this magic_quotes_gpc from the php.ini file.
You can disabled it from php.ini file - open your wamp server's php.ini file and find the below lines and put it value as off !
magic_quotes_gpc = Off magic_quotes_runtime = Off magic_quotes_sybase = Off
You can also disable this using .htaccess file.
Place below code in your .htaccess file if you don’t have access to php.ini file.
php_flag magic_quotes_gpc Off # OR php_value magic_quotes_gpc Off
Or else you can upgrade your wamp server to 3.1.x to get the Php version 5.6 - then it will support it for the same
Hope it helps !