cancel
Showing results for 
Search instead for 
Did you mean: 

I m getting an error in wamp 5.4 while installation :

SOLVED

I m getting an error in wamp 5.4 while installation :

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?

2 ACCEPTED SOLUTIONS

Accepted Solutions

Re: I m getting an error in wamp 5.4 while installation :

Hi

I think this is known issue.

main reason for this issue is your wamp/php version is not supported with the magento version which you are trying to installed .

so kindly check the technology stack for the magento version which you are installing

also i am sharing the link kindly refer that and follow the instructions , it will helps you for the same - https://stackoverflow.com/questions/13653523/magento-is-not-working-in-wamp-server-5-4-32bit-shows-i...

Hope it helps
if issue solved,Click Kudos & Accept as Solution

View solution in original post

Re: I m getting an error in wamp 5.4 while installation :

Hello @ali_lena,

 

Can you please share error with us?

 

--
If my answer is useful, please Accept as Solution & give Kudos

View solution in original post

4 REPLIES 4

Re: I m getting an error in wamp 5.4 while installation :

Hi

I think this is known issue.

main reason for this issue is your wamp/php version is not supported with the magento version which you are trying to installed .

so kindly check the technology stack for the magento version which you are installing

also i am sharing the link kindly refer that and follow the instructions , it will helps you for the same - https://stackoverflow.com/questions/13653523/magento-is-not-working-in-wamp-server-5-4-32bit-shows-i...

Hope it helps
if issue solved,Click Kudos & Accept as Solution

Re: I m getting an error in wamp 5.4 while installation :

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....

Re: I m getting an error in wamp 5.4 while installation :

Hello @ali_lena,

 

Can you please share error with us?

 

--
If my answer is useful, please Accept as Solution & give Kudos

Re: I m getting an error in wamp 5.4 while installation :

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 !

 

if issue solved,Click Kudos & Accept as Solution