Pay pal button dosen't work in Internet Explorer

Fronk
Contributor
Contributor

Pay pal button doesn't work in Internet Explorer (gets error message) but does work in Firefox or Google Chrome

Login to Me Too
14 REPLIES 14

classy-diva
Frequent Contributor
Frequent Contributor

Then only use the browsers it works in.

Login to Me Too

Fronk
Contributor
Contributor

Sorry this is not practical advice, as I'm trying to sell and most people use IE. There must be a fault with the pay pal system and I'm looking for practical solutions to help

 

Login to Me Too

A_McG
New Community Member

You're using Frames in your web site design. 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.

 

 

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

mcmorrowk
New Community Member

@A_McG wrote:


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.

 

 

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


This worked for me. Thank you.

Login to Me Too

scooter2017
New Community Member

Are you serious? You should resign.

Login to Me Too

PayPal_DavidR
Moderator
Moderator

Hi all,

 

For technical assistance I recommend visiting developer.paypal.com or you can Tweet @AskPayPal_MTS.

 

-David R

Login to Me Too

Rockytfs
Member
Member

Hello,

 

I'm also having this problem. I've checked the code for the frame issue and my code reads exactly as it should. When you click on the "Add to Cart" button in Internet Explorer nothing happens - no error code - nothing. The "View Cart" button works.

 

Firefox works as it should.

 

My site is www.talesendtackle.com. Mouse over the lures button and click on a specific lure to try it out.

 

I'm really baffled by this one and would appreciate the help!

Login to Me Too

PayPal_david
Moderator
Moderator

Hi there Rockytfs,

 

I am very limited to what I know in regards to technical aspects of the PayPal website. I will advise however that if you are still facing this problem, you can go through the links that I have included below in order to try and get an answer to your query.

 

If you click here, it will bring you to a PayPal developer forum. You may see your question being asked here previously and if not, you can ask your question here and a member of the forum can try to assist you further.

 

If you click here, it will bring you to the PayPal Merchant Technical Support website. You may also see your question being asked here already and if not, you can submit a request to our technical team and they can assist you further with the issue that you are having.

 

I hope this information helps,

 

David.

Login to Me Too

Baya
New Community Member

 

 

I'm having trouble with paypal button and IE. I have three paypal buttons two of them are displayed OK the third one doesn’t get displayed. I search the forum and tried the suggested solutions, still not working.

I had the form inside php code using echo .....

}else{

echo '<strong> You are a member of XXX. Please procede with your payment to renew your membership';

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

echo '<input type="hidden" name="cmd" value="_s-xclick">';

echo '<input type="hidden" name="hosted_button_id" value="4DVTKZX8M67TC">';

echo '<P><input type="image" src="https:www.paypalobjects.com/en_US/i/btn/btn_paynow_SM.gif" border="0" name="submit" alt="PayPay-The safer, easier way to pay online!"></P>';

echo '<img alt="" border="0" src="https:www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">';

echo '</form>';

}

When it didn't work I changed it by closing the php tag and tried to display it with html tags only, still no success.

?>

<strong> <font color="red" size=3>You are a member of XXX. Please procede with your payment to renew your membership</font>

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

<input type="hidden" name="cmd" value="_s-xclick">

<input type="hidden" name="hosted_button_id" value="4DVTKZX8M67TC">

<input type="image" src="https:www.paypalobjects.com/en_US/i/btn/btn_paynow_SM.gif" border="0" name="submit" alt="PayPay-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>

<?php

}

 

 

Any suggestion please.

 

 

Thank you

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.