Enable errors in browser when parsing PHP-files

前端 未结 4 2147
面向向阳花
面向向阳花 2021-02-19 01:38

I recently changed to a MacBook and now use the MAMP-stack for development locally.

In my earlier development environment I always could see informative error-reports wh

相关标签:
4条回答
  • 2021-02-19 02:23

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

    0 讨论(0)
  • 2021-02-19 02:24

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

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

    0 讨论(0)
  • 2021-02-19 02:25

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

    Click PHP Tab

    Find Log errors: setting

    Tick to screen

    Click Save

    0 讨论(0)
  • 2021-02-19 02:26

    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');
    
    0 讨论(0)
提交回复
热议问题