2013-08-26 43 views
-1

我在我的一些頁面上遇到php問題。我不知道如何解決我得到的這個錯誤。我的網頁上的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,但沒有工作。

格式應該看起來像this page

+3

獲取更好的主機 –

+0

您的PHP配置阻止了您頁面的某些功能。你可以通過設置'allow_url_open'和'max_execution_time'(或者使用'ini_set'在你的php文件中執行此操作)來嘗試改變你的php.ini,但是你的主機可能會在服務器級別上阻止它。如果它對你的站點不重要,你可以使用'error_reporting(0);' –

+0

隱藏警告謝謝你的建議Jason,我沒有看到php.ini文件的配置位置。我沒有使用php myadmin來設置頁面,我會與我的主機一起檢查它是否在他們的最後。 – globalsolutions

回答