Paypal sandbox producing message 3005 -


i have been struggling issue quite while now. trying test paypal button implementation sandbox, , have following code:

<form action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post" target="_top"> <input type="hidden" name="cmd" value="_xclick-subscriptions"> <input type="hidden" name="business" value="email@example.com"> <input type="hidden" name="lc" value="gb"> <input type="hidden" name="item_name" value="item name"> <input type="hidden" name="no_note" value="1"> <input type="hidden" value="http://xx.xx.xx.xx" name="return"> <input type="hidden" name="src" value="1"> <input type="hidden" name="currency_code" value="gbp"> <input type="hidden" name="bn" value="pp-subscriptionsbf:btn_subscribe_lg.gif:nonhostedguest"> <table> <tr><td><input type="hidden" name="on1" value="first">first name</td></tr><tr><td><input type="text" name="os1" maxlength="200"></td></tr> <tr><td><input type="hidden" name="on2" value="last">last name</td></tr><tr><td><input type="password" name="os2" maxlength="200"></td></tr> <tr><td><input type="hidden" name="on0" value="frequency">frequency</td></tr><tr><td><select name="os0">     <option value="weekly">weekly : £10.00 gbp - weekly</option>     <option value="monthly">monthly : £25.00 gbp - monthly</option>     <option value="yearly">yearly : £250.00 gbp - yearly</option> </select> </td></tr>  </table> <input type="hidden" name="currency_code" value="gbp"> <input type="hidden" name="option_select0" value="weekly"> <input type="hidden" name="option_amount0" value="10.00"> <input type="hidden" name="option_period0" value="w"> <input type="hidden" name="option_frequency0" value="1"> <input type="hidden" name="option_select1" value="monthly"> <input type="hidden" name="option_amount1" value="25.00"> <input type="hidden" name="option_period1" value="m"> <input type="hidden" name="option_frequency1" value="1"> <input type="hidden" name="option_select2" value="yearly"> <input type="hidden" name="option_amount2" value="250.00"> <input type="hidden" name="option_period2" value="y"> <input type="hidden" name="option_frequency2" value="1"> <input type="hidden" name="option_index" value="0"> <span id='signupbutton'></span> </form> 

this redirects me paypal checkout, once logged in sandbox buyer account, produces following problem consistently:

paypal error

i've done suggested in error page, still no luck. missing something?

this generic (and ancient) paypal "our process died attempting produce web page" error. presumably have incorrect input or unusual circumstance causes crash, doing favor if report bug paypal can fix (to give useful error rather crashing).

that said, diagnose recommend stripping down super-simple button , if works, try re-introducing complexity of button see triggers crash.

however, since crash happens after login may bad buyer account (or bad seller/buyer account combination) or such triggers edge condition. try different buyer account.


Comments

Popular posts from this blog

javascript - Google App Script ContentService downloadAsFile not working -

javascript - Function overwritting -

php - Find a regex to take part of Email -