Reputation: 812
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
Upvotes: 1
Views: 120
Reputation: 901
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.
Upvotes: 1