-1

我在某些页面上遇到了 php 问题。我不知道如何解决我遇到的这个错误。

Warning: set_time_limit() has been disabled for security reasons in /home/sweetsun/public_html/products/coffee/rss.inc on line 8

Warning: fopen() [function.fopen]: http:// wrapper is disabled in the server configuration by allow_url_fopen=0 in /home/sweetsun/public_html/products/coffee/rss.inc on line 81

Warning: fopen(http://news.google.com/news?sourceid=navclient&ie=UTF-8&rls=GGLG,GGLG:2005-22,GGLG:en&q=Coffee&output=rss) [function.fopen]: failed to open stream: no suitable wrapper could be found in /home/sweetsun/public_html/products/coffee/rss.inc on line 81
could not open XML input

我在 Notepad ++ 中打开文件来修复代码,我尝试将 time_limit 设置为 0 不起作用。

格式应该类似于这个页面

4

1 回答 1

0

服务器已配置,因此您不允许调用 set_time_limit 函数(http://www.php.net/manual/en/ini.core.php#ini.disable-functions

并且您无法通过网络打开文件(http://www.php.net/manual/en/filesystem.configuration.php#ini.allow-url-fopen

您必须重新配置服务器或迁移到允许这样做的某个服务器。

于 2013-08-27T04:38:35.823 回答