The wp-config.php file is not writable. Please check the file permissions.
-
Recent changes to the plugin added some options for defaulting
wp_debug_enabled
andwp_debug_log_enabled
to true by default. It then attempts to modify the wp-config.php file based on these default values and callswp_die()
when it can’t. Many hosting providers, including WordPress.com, may not allow modifying files this way for security reasons.
Rather than callingwp_die()
, can you callerror_log()
ortrigger_error()
instead, which is more friendly and allows a site to still function? Additionally, you may want to consider setting the options to false by default rather than true as most good hosting providers display all PHP errors within their dashboards, regardless of the wp-config.php constants.
- You must be logged in to reply to this topic.