asp classic - Paypal DoDirectPayment: Live transaction failed -


i have integrated paypal in application using nvp call in asp. used sandbox accounts test paypal. worked perfectly. when comes live account showing error

"this transaction cannot processed due invalid merchant configuration."

i used following method send data

nvpstr  =   "&paymentaction=sale" & _                         "&amt="&amount&"" &_                         "&creditcardtype=visa" &_                         "&acct="&cardnumber&"" & _                         "&expdate="&expdate&""  &_                         "&cvv2="&cvv&"" &_                         "&firstname="&firstname&"" &_                         "&lastname="&lastname&"" &_                         "&street="&address1&"" &_                         "&city="&city&"" &_                         "&state="&state&"" &_                         "&zip="&zip&"" &_                         "&countrycode=us" &_                         "&currencycode=usd" & _                         "&ipaddress=192.168.1.77"  

though have used correct live credentials , url showing same error. account paypal business account. business , paypal pro account same? missing thing else?

this error means not have website payments pro enabled on business account. business account not mean have website payments pro enabled, have sign service. can contact paypal customer support assistance in signing this, or can sign through here.


Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -