Donate Button gives FATAL ERROR when clicked

mobiltec
Contributor
Contributor

I have never had this problem before. When I test my DONATE button it comes up with a blank page that says Fatal Error. I posted this HTML in my framed website.

 

<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="HDP95BNAZMUWE">
<input type="image" src="https://www.paypal.com/en_US/i/btn/btn_donateCC_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_US/i/scr/pixel.gif" width="1" height="1">
</form>

 

I copied this HTML from the buttons generation page on Pay Pal....

Login to Me Too
1 ACCEPTED SOLUTION

Accepted Solutions
Solved

skier
Advisor
Advisor

For security reasons, PayPal does not allow the use of their payment pages to be displayed inside of a Frame. When a PayPal page is displayed in a Frame, it is unsecure causing it to time out and/or be blocked.

You can fix this by simply adding target="paypal" in the <form action> tag of the HTML code. This will prevent the PayPal payment page from being displayed in a Frame.  You need to make your first line code look like this example:

<form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post"> 

 

 

 

 

 

Regards,

 

 

skier

View solution in original post

Login to Me Too
4 REPLIES 4
Solved

skier
Advisor
Advisor

For security reasons, PayPal does not allow the use of their payment pages to be displayed inside of a Frame. When a PayPal page is displayed in a Frame, it is unsecure causing it to time out and/or be blocked.

You can fix this by simply adding target="paypal" in the <form action> tag of the HTML code. This will prevent the PayPal payment page from being displayed in a Frame.  You need to make your first line code look like this example:

<form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post"> 

 

 

 

 

 

Regards,

 

 

skier

Login to Me Too

mobiltec
Contributor
Contributor

Thanks Skier... That worked.

Login to Me Too

skier
Advisor
Advisor

Nice and don't forget to mark the thread solved.

 

 

Regards,

 

skier

Login to Me Too

mobiltec
Contributor
Contributor

OK found it...

Login to Me Too

Haven't Found your Answer?

It happens. Hit the "Login to Ask the community" button to create a question for the PayPal community.