file_get_contents在Asterisk Now上不起作用

时间:2015-04-29 17:51:40

标签: php asterisk agi

我现在安装Asterisk 6.12 32位,然后像这样运行代码php:

<?php 
    $link = 'http://www.bongda.com.vn/feed/';
    $content = file_get_contents($link);
    print_r($content);
?>

file_get_contents无法正常工作:(但我可以在Windows 7中的wamp服务器上运行代码php。

1 个答案:

答案 0 :(得分:0)

  • PHP安装中可能缺少用于URL的Stream Wrapper
  • allow_url_fopen在/etc/php.ini
  • 中禁用
  • 某种防火墙设置(iptables)会阻止外向访问

要帮助调试,请检查/ var / log / httpd / error_log。 我会建议将php cURL库用于在线资源而不是file_get_content。