我在我的开发 WAMP 服务器上本地使用我的 PyroCMS 模块中的ci-merchant库。(一切正常)
当我上传到我的 Linux 测试服务器时,purchase()
被调用的函数似乎不起作用。
当它执行它池 5 分钟然后我得到一个响应“无法连接到主机”。
PHP
$params =
array(
'amount' => 20,
'currency' => 'USD',
'return_url' => 'http://someurl.com/return/'
'cancel_url' => 'http://someurl.com/cancel/'
);
$settings = array(
'test_mode' => TRUE,
'username' => 'PAYPAL_TEST_USERNAME'
'password' => 'MY_PAPAL_TEST_PASS'
'signature' => 'MY_PAYPAL_TEST_SIG'
);
$this->load->library('merchant');
$this->merchant->load('paypal_express');
$this->merchant->initialize($settings);
//this is where Im having the issue
$response = $this->merchant->purchase($params);
$message = $response->message();
当我回显 $message
echo $message; //Outputs: couldn't connect to host"
CURL - 服务器设置
以下是服务器上 CURL 设置的差异列表。也许这就是问题所在。我认为无需编译 curl 就可以更改这些设置,但我不确定。
开发服务器(WAMP 服务器 - 状态:工作中)
AsynchDNS : Yes
CurlInfo : 7.21.7
GSS Neg : Yes
IDN : No
SSPI : Yes
libSSH : libssh2/1.2.7
测试服务器(Linuxserver - 状态:不工作)
AsynchDNS : No
CurlInfo : 7.24.0
GSS Neg : No
IDN : Yes
SSPI : No
libSSH : <<not listed>>