• I have been using this plugin on several websites for a long while, and it has always worked perfectly.

    New problem: Error logging is disabled, and I am prompted to configure wp_config.php, but it is configured. This is the config as it relates to error reporting:

    define( 'WP_DISABLE_FATAL_ERROR_HANDLER', true );
    
    //Report all types of errors.
    define('WP_DEBUG', true);
    
    //Don't show errors to site visitors.
    define('WP_DEBUG_DISPLAY', false);
    
    //Enable error logging.
    @ini_set('log_errors', 'On');
    @ini_set('error_log', '/home/xxxxxxxx/logs/php-errors.log');
    
    @ini_set('display_errors','Off');
     

    The log file is owned by the web server user, and permissions are 0777.

    The problem is exactly the same if I use the “Recommended settings”.

Viewing 1 replies (of 1 total)
  • Plugin Author Janis Elsts

    (@whiteshadow)

    Could it be that the server configuration of that specific site does not allow PHP scripts to override PHP settings by using ini_set()? Some hosting providers have restrictions like that. In that case, your config could be completely correct, but it just wouldn’t have any effect.

Viewing 1 replies (of 1 total)
  • The topic ‘Error logging is disabled.’ is closed to new replies.