我有调用zoho api的脚本,它在localhost上正常工作但是当我将脚本上传到服务器时它不起作用,errror说
Severity: Warning
Message: simplexml_load_file(https://crm.zoho.com/crm/private/xml/Leads/getMyRecords?newFormat=1&apikey={removed}&ticket={removed}): failed to open stream: Connection refused
Filename: models/xml_model.php
Line Number: 25
我检查了php.ini设置以检查简单的xml是否启用,我可以看到它已启用。我也可以看到本地和主设备的“allow_url_fopen”设置为“ON”
有什么我必须检查的吗?
答案 0 :(得分:0)
查看输出:
<?php phpinfo(); ?>
它在“已注册的PHP Streams”中显示了什么?你在那条线上看到“https”吗?
如果没有,只需添加:
extension=php_openssl.dll
到你的php.ini文件并重启web服务器。它将加载OpenSSL扩展。