Wednesday 28 November 2012

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

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

Answer:-

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.

 Happy Coding.......................... :)