2011-10-11 46 views
4

今天我收到以下錯誤。沒有任何改變我的PHP程序。未知:無法打開所需'0ff'(include_path ='。:/ tmp:/ usr/lib/php:/ usr/local/lib/php')在未知0行

Warning: Unknown: failed to open stream: No such file or directory in Unknown on line 0

Warning: Unknown: failed to open stream: No such file or directory in Unknown on line 0

Fatal error: Unknown: Failed opening required '0ff' (include_path='.:/tmp:/usr/lib/php:/usr/local/lib/php') in Unknown on line 0

....幾個小時後...服務器管理員說他的觀點'沒有問題'!

什麼很好的解決方案:))現在

,數小時後變爲下列消息

Fatal error: Unknown: Failed opening required '0ff

; As of 4.0b4, PHP always outputs a character encoding by default in 
; the Content-type: header. To disable sending of the charset, simply 
; set it to be empty. 
; 
; PHP's built-in default is text/html default_mimetype = text/html 
;default_charset = iso-8859-1 
; Always populate the $HTTP_RAW_POST_DATA variable. 
;always_populate_raw_post_data = On 
;;;;;;;;;;;;;;;;;;;;;;;;; 
; Paths and Directories 
; 
;;;;;;;;;;;;;;;;;;;;;;;;; 
; UNIX: /path1:/path2 include_path = .:/tmp:/usr/lib/php:/usr/local/lib/php 
; 
; Windows: \path1' (include_path='.:/usr/lib/php') in Unknown on line 0 
+1

請提供代碼失敗並出現此錯誤 – veritas

+3

這是一個曲解配置設置的地方。請注意,錯誤的值是'0ff',而不是'Off'(零應該是0)。 – mario

+0

是的..你的權利..它應該關閉,而不是0ff –

回答

5

Unknown on line 0通常表示一個配置錯誤的錯誤,所以應該告訴你的系統管理員。此外,錯誤消息(0ff)中的值看起來像「關閉」,但實際上它始於零錯誤 - 最可能的原因。

+0

好吧,我聯繫到服務器支持,並仍在等待他們的答覆或行動。你的權利..它應該關閉,而不是0ff –

+0

正確的,所以INI文件中的以下數據被視爲一個路徑。 –

+0

我發現了這個問題...我在我的網站上使用phpinfo(),它顯示了我的服務器PHP配置。然後我搜索'0ff',並在php.ini中找到以下行:我的服務器 'auto_append_file 0ff' 並且顯然是錯誤的要點。 '0'而不是'O' 讓我聯繫服務器管理員並告訴他有關錯誤。 感謝所有 –

相關問題