0
Q
PHP錯誤未顯示
A
回答
3
讓你的頁面外觀的前四行是這樣的:
<?php
error_reporting(E_ALL);
ini_set('display_errors', TRUE);
ini_set('display_startup_errors', TRUE);
這將覆蓋其他地方您的錯誤回顯設置,以便您可以跟蹤你的問題。當然,如果您懷疑存在缺失或錯誤配置的依賴關係,請不要忘記執行phpinfo();
。
0
嘗試啓用在PHP錯誤:
<?php
error_reporting(E_ALL);
ini_set('display_errors', TRUE);
ini_set('display_startup_errors', TRUE);
如果您還沒有看到任何東西,你使用的是Linux和Apache試圖尋找到/var/log/apache2/error.log
你可以看到現場日誌tail -f /var/log/apache2/error.log
相關問題
- 1. Javascript錯誤消息未顯示在php
- 2. 顯示PHP錯誤
- 3. PHP顯示錯誤
- 4. 顯示錯誤 - PHP
- 5. PHP錯誤顯示
- 6. PHP代碼錯誤,顯示錯誤未定義偏移
- 7. 錯誤頁未顯示
- 8. 錯誤消息未顯示
- 9. Nodejs Elasticsearch錯誤未顯示
- 10. 404錯誤未顯示
- 11. PHP包含顯示錯誤
- 12. PHP不顯示錯誤
- 13. XAMPP不顯示php錯誤
- 14. 在PHP中顯示錯誤
- 15. MySQL和PHP顯示錯誤
- 16. modx - 顯示php錯誤
- 17. php月顯示錯誤
- 18. PHP PDO:顯示錯誤
- 19. PHP錯誤,不顯示
- 20. 彗星 - PHP錯誤顯示
- 21. PHP沒有顯示錯誤
- 22. PHP致命錯誤未顯示在瀏覽器屏幕上
- 23. 庫中的錯誤未顯示 - 代碼點火器/ PHP
- 24. php頁面顯示未定義的索引錯誤
- 25. AdMob - 廣告未顯示 - 錯誤2
- 26. datatables.net數據未顯示錯誤TN/4
- 27. EXTJS4:Ext.msg框未顯示,引發錯誤
- 28. Foundation 5/Abide.js問題(錯誤未顯示)
- 29. GAE Cloud Endpoint未顯示401 auth錯誤
- 30. 驗證錯誤未顯示(MVC4和EF)
你重新啓動網絡服務器?嘗試從shell運行腳本php也 – 2012-08-05 13:46:29
你怎麼知道它有一個錯誤? – 2012-08-05 13:47:52
檢查'display_errors' ini設置,以及'error_reporting'。 – complex857 2012-08-05 13:48:37