中国大陆地区无法使用PayPal付款的解决办法
最近用PayPal在给主机续费过程中出现了怪事,出现了这个错误:PayPal cannot process this transaction because of a problem with the seller’s website. Please contact the seller directly to resolve this problem.
解决办法:
1、如果你是用FireFox(装FireBug)或者谷歌浏览器,可直接查看PayPal付款页的源代码,(图示使用的谷歌浏览器)如下:
将图示部分的
<input type=”hidden” name=”lc” value=”CN”>
改为
<input type=”hidden” name=”lc” value=”HK”>
即把 CN 改为 HK 即可。
改好后再点击 PayPal的付款按钮,即可用PayPal付款了。
2、其它浏览器可以把此页另存为HTML网页,用记事本打开,把 <input type=”hidden” name=”lc” value=”CN”> 中的 CN 改为 HK,保存后再用浏览器打开,点击付款按钮。
3、删掉 <input type=”hidden” name=”lc” value=”CN”> 这一行,直接点付款也可。
4、在付款页的浏览器地址栏输入下面代码后按回车一样也可。
javascript:document.all.item(“lc”,0).value=”HK”;alert(document.all.item(“lc”,0).value);
5、终极办法:修改付款资料的国家为HongKong。(被叛国….不能选China)

很好的内容。让我深受感触。