Security error occurred. Please press back, refresh the page, and try again.

mrchasez

Active member
We use a (paid) plugin called HTML BBCODE.
It allows us to have html in threads.

So on our donate page, we have a "buy it now" button (it lets you choose what rank you want and put in your minecraft username)

Whenever someone picks there rank, puts in there name and pushes "buy it now"
(Donate page) http://kingscrafters.com/index.php?inline-mod/post/switch

It leads to a page that says
"Security error occurred. Please press back, refresh the page, and try again."
Link to page; http://kingscrafters.com/index.php?inline-mod/post/switch

Whats weird is, We have another buy it now button right below it, Only difference is it has different options, and it works.

Please help ;(
 
Sorry, but i just don't understand what im supposed to do.
I gave you the full paypal code, and the link to where i upload for the iframe and the iframe code itself, What else do i need to provide?
 
My previous post shows the code you need to add to the form:

The target goes into the form tag:

http://www.w3schools.com/tags/att_form_target.asp

Here is the source code of your form with the target added in red:

Rich (BB code):
<form 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="DGNHYMLSHJ2YJ">
<table>
<tr><td><input type="hidden" name="on0" value="Upgrades">Upgrades</td></tr><tr><td><select name="os0">
<option value="VIP-&gt;Builder">VIP-&gt;Builder$5.00 USD</option>
<option value="Builder-&gt;Baron">Builder-&gt;Baron$6.00 USD</option>
<option value="Baron-&gt;Knight">Baron-&gt;Knight$7.00 USD</option>
<option value="Knight-&gt;Hero">Knight-&gt;Hero$10.00 USD</option>
<option value="Hero-&gt;Supreme">Hero-&gt;Supreme$21.00 USD</option>
<option value="Supreme-&gt;Paladin">Supreme-&gt;Paladin$30.00 USD</option>
<option value="Paladin-&gt;Legend">Paladin-&gt;Legend$31.00 USD</option>
<option value="Legend-&gt;Emperor">Legend-&gt;Emperor$50.00 USD</option>
<option value="Emperor-&gt;Majesty">Emperor-&gt;Majesty$55.00 USD</option>
<option value="Majesty-&gt;King">Majesty-&gt;King$100.00 USD</option>
</select> </td></tr>
<tr><td><input type="hidden" name="on1" value="Minecraft Username:">Minecraft Username:</td></tr><tr><td><input type="text" name="os1" maxlength="200"></td></tr>
</table>
<input type="hidden" name="currency_code" value="USD">
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_buynowCC_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>
 
My previous post shows the code you need to add to the form:

I copied this
Code:
<form 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="DGNHYMLSHJ2YJ">
<table>
<tr><td><input type="hidden" name="on0" value="Upgrades">Upgrades</td></tr><tr><td><select name="os0">
<option value="VIP-&gt;Builder">VIP-&gt;Builder$5.00 USD</option>
<option value="Builder-&gt;Baron">Builder-&gt;Baron$6.00 USD</option>
<option value="Baron-&gt;Knight">Baron-&gt;Knight$7.00 USD</option>
<option value="Knight-&gt;Hero">Knight-&gt;Hero$10.00 USD</option>
<option value="Hero-&gt;Supreme">Hero-&gt;Supreme$21.00 USD</option>
<option value="Supreme-&gt;Paladin">Supreme-&gt;Paladin$30.00 USD</option>
<option value="Paladin-&gt;Legend">Paladin-&gt;Legend$31.00 USD</option>
<option value="Legend-&gt;Emperor">Legend-&gt;Emperor$50.00 USD</option>
<option value="Emperor-&gt;Majesty">Emperor-&gt;Majesty$55.00 USD</option>
<option value="Majesty-&gt;King">Majesty-&gt;King$100.00 USD</option>
</select> </td></tr>
<tr><td><input type="hidden" name="on1" value="Minecraft Username:">Minecraft Username:</td></tr><tr><td><input type="text" name="os1" maxlength="200"></td></tr>
</table>
<input type="hidden" name="currency_code" value="USD">
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_buynowCC_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>

Posted it on its own page, then iframed it.
What am i doing wrong?
 
Top Bottom