Enable errors in browser when parsing PHP-files

筅森魡賤 提交于 2019-12-03 23:04:17

reporting level to E_ALL and display errors on Include the following code at the top of every php file on in an include or require such as your config.php

error_reporting(E_ALL);
ini_set('display_errors', 'on');

Try ini_set('display_errors', 'on');

You'll also want to check a phpinfo(), to see if the ini_sets are doing anything.

Or change "display_errors = Off" to "display_errors = On" in /Applications/MAMP/bin/php/php5.4.4/conf/php.ini

Navigate to MAMP settings (eg localhost:8889/MAMP)

Click PHP Tab

Find Log errors: setting

Tick to screen

Click Save

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!