Magento and Paypal issue

Robert

I want to setup PayPal Standard as my payment method and after I complete all fields in the checkout one page and choose PayPal as payment method the store is redirect me back to shopping cart and I have this error:

PayPal gateway has rejected request. Method Specified is not Supported (#81002: Unspecified Method)

Thank you

fresher

Credits : http://paypal-error-81002.blogspot.in/

If you search for the below code in your php.ini file

arg_separator.output = "&"

you can see the PHP building the query parameter while starting with "&" Which PayPal doesn't understand. That's why you are getting the above error.

To resolve this just change above code to

arg_separator.output = "&"

Restart your Apache server.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related