【发布时间】:2016-07-28 04:55:06
【问题描述】:
我正在使用 codeigniter 并寻找 Skrill 支付网关的集成,但没有从任何地方获得准确的信息。我已经按照example 的步骤进行操作,但它不会重定向到我的状态网址(CodeIgniter 之外)。
我用下面的代码尝试了one another example,但它也不起作用
$config['pay_to_email']="abcdef@gmail.com";
$config ['status_url'] = 'http://myserver/response.php';
$config ['language'] = 'EN';
$config ['amount'] = '1';
$config ['currency'] = 'USD';
$config ['return_url_text'] = 'Return to response.php';
$config ['return_url'] = 'http://myserver/response.php';
$config ['cancel_url'] = 'http://myserver/response.php';
$config ['detail1_description'] = 'Membership';
$url='https://www.moneybookers.com/app/payment.pl?';
$vars=http_build_query($config);
header('LOCATION:' . $url. $vars);
如果我在服务器上运行上面的文件,那么它也不能正常工作,也不能重定向到 response.php。
【问题讨论】:
标签: php codeigniter skrill