Access our premium support and let us know your problems, we will help you solve them.

0
No products in the cart.

Forum Replies Created

Viewing 1 post (of 1 total)
  • Author
    Posts
  • in reply to: How do I get PHP errors to display? #10163
    blankpeter-haberkorn
    Participant

    If you have Xdebug installed you can override every setting by setting:

    xdebug.force_display_errors = 1;
    xdebug.force_error_reporting = -1;
    

    force_display_errors

    Type: int, Default value: 0, Introduced in Xdebug >= 2.3 If this
    setting is set to 1 then errors will always be displayed, no matter
    what the setting of PHP’s display_errors is.

    force_error_reporting

    Type: int, Default value: 0, Introduced in Xdebug >= 2.3
    This setting is a bitmask, like error_reporting. This bitmask will be logically ORed with the bitmask represented by error_reporting to dermine which errors should be displayed. This setting can only be made in php.ini and allows you to force certain errors from being shown no matter what an application does with ini_set().

Viewing 1 post (of 1 total)