when i hit index page instead of error messages I'm just getting a blank page. Is there any way to show PHP error messages instead? It's very hard to debug when I get no feedback. My environment is linux. PHP
收起
You have your answer in this post
Basically you have to add this 2 lines at the beginning of the file
error_reporting(-1); ini_set('display_errors', 'On');
报告相同问题?