Hi, So this issue is probably known yet I haven't found a fix for it. A Paypal buy now button seems to give error 3005 when I click on it. I have placed the button in a basic HTML 4 page with nothing in it but the html tags, head, body tags. In the body tags I placed the paypal button code and when I click on it through IE9 it errors out. Sometimes it goes through...sometimes it doesn't. Is there a fix for this? <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Title of the document</title>
</head>
<body>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="ERN3NJN3YJ2BE">
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_paynowCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>
</body>
</html>
... View more