Forum Replies Created
Viewing 1 post (of 1 total)
- AuthorPosts
-
peter-haberkorn
ParticipantIf 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(). - AuthorPosts
Viewing 1 post (of 1 total)