Skip to content

Instantly share code, notes, and snippets.

@dasbairagya
Last active July 24, 2021 09:50
Show Gist options
  • Save dasbairagya/c432c3449db104276d2b3d51268a958b to your computer and use it in GitHub Desktop.
Save dasbairagya/c432c3449db104276d2b3d51268a958b to your computer and use it in GitHub Desktop.
wp debug

Enable wordpress debug

wp-config.php

define('FS_METHOD','direct'); //install plugins without ftp
// Enable WP_DEBUG mode
define('WP_DEBUG', true);
if ( WP_DEBUG ) {
    @error_reporting( E_ALL );
    @ini_set( 'log_errors', true );
    @ini_set( 'log_errors_max_len', '0' );

    define( 'WP_DEBUG_LOG', true );
    define( 'WP_DEBUG_DISPLAY', false );
    @ini_set( 'display_errors', 0 );
    define( 'CONCATENATE_SCRIPTS', false );
    define( 'SAVEQUERIES', true );
    define( 'SCRIPT_DEBUG', false );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment