Make WordPress Core

Changes between Initial Version and Version 2 of Ticket #61873


Ignore:
Timestamp:
08/14/2024 09:12:54 PM (7 weeks ago)
Author:
sabernhardt
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #61873

    • Property Keywords changes-requested removed
  • Ticket #61873 – Description

    initial v2  
    1 Short summary of the problem: When error_reporting function is disabled on the hosting provider, it breaks admin area due to the fact that wp-admin/load-styles.php and wp-admin/load-scripts.php are triggering it without checking.
     1Short summary of the problem: When `error_reporting` function is disabled on the hosting provider, it breaks admin area due to the fact that `wp-admin/load-styles.php` and `wp-admin/load-scripts.php` are triggering it without checking.
    22
    3 Some work has been done to resolve the problem here https://core.trac.wordpress.org/ticket/52226
     3Some work has been done to resolve the problem on #52226
    44
    5 Unfortunately it doesn't address the issue completely as it only adds checks to the wp-load.php file.
     5Unfortunately it doesn't address the issue completely as it only adds checks to the `wp-load.php` file.
    66
    7 Here is the great post that summarizes problem with error_reporting in WP for some additional context: https://phil.lavin.me.uk/2022/02/wordpress-changing-error_reporting-level/
     7Here is the great post that summarizes problem with `error_reporting` in WP for some additional context: https://phil.lavin.me.uk/2022/02/wordpress-changing-error_reporting-level/