我使用gpixpixel脚本,并将其配置为允许访问者通过Paypal购买像素,但点击了" Pay with Paypal"按钮,该页面仅显示DNS错误。
以下是交易页面上表单的代码:
<form method="post" action="https://sandbox.paypal.com/cgi-bin/webscr">
<input type="hidden" name="amount" value="1620">
<input type="hidden" name="business" value="testmerchant@nodomain.com">
<input type="hidden" name="cancel_return" value="http://-site-/gpix/get_pixels.php?step=6">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="currency_code" value="USD">
<input type="hidden" name="custom" value="8:c6f79ef0f714fae081a6df9d778df198">
<input type="hidden" name="item_name" value="Pixels: ">
<input type="hidden" name="no_note" value="1">
<input type="hidden" name="NotifyURL" value="http://-site-/gpix/paypal_ipn.php?payment_id=8">
<input type="hidden" name="no_shipping" value="1">
<input type="hidden" name="return" value="http://-site-/gpix/index.php">
<input type="hidden" name="rm" value="2">
<p>
<input type="submit" value="Pay with PayPal >>">
</p>
</form>
此外,此页面在另一个页面(位于同一目录中)的iframe中打开。
感谢任何帮助。
如果有人想查看安装,我可以将链接发布到网站。
答案 0 :(得分:0)
您遗失了www
尝试:
<form method="post" action="https://www.sandbox.paypal.com/cgi-bin/webscr">
答案 1 :(得分:0)
浏览器的原始政策限制了我在其他网页中嵌入iframe的页面,导航到Paypal的网站。
感谢Vimal指出丢失的www,其遗漏创建了一个错误的URL,显然不会导航到任何地方。