I'm trying to install PayPal to my site which is Frame based with "upper" and "lower". Initial code from PayPal:
<form target="paypal" 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="DLQBYHWHB2CKC">
<input type="image" src="https://www.paypal.com/en_GB/i/btn/btn_cart_LG.gif"
border="0" name="submit" alt="PayPal - The safer, easier way to pay online.">
<img alt="" border="0" src="https://www.paypal.com/en_GB/i/scr/pixel.gif"
width="1" height="1">
</form>
First attempt seemed OK, cart page opened. Then click "continue purchasing" and a pop up appeared "do you wish to close this window" - YES - but then a full screen copy of the product page appeared ontop of the original. PayPal Tech. said this was because I am using IE8. and changed firt line to
<form target="_self" action="https://www.paypal.com/cgi-bin/webscr" method="post">
and insert additional line:
<input type="hidden" name="shopping_url" value="http://www.MySite/ProductPage.html">
Now click on "Add to Cart" goes straight to PayPal Error Page!
PayPal Tech. now say " my tests of the site through IE8, IE7, and FireFox 3.5 redirect back to the correct page as is without any changes to the code suggesting that the error you are seeing is specific to your browser settings or browser version or possibly add-on associated to the browser you are testing through."
I have tested on 3 machines all on IE8 and the result is the same!
I am a novice, have built and developed my site following info. from a very good book over past 6 years (since I retired). Now I am STUCK!
Any help, ideas or suggestions would be most welcome
DPJ