Skip to content

Commit

Permalink
Create fragment-3.php
Browse files Browse the repository at this point in the history
  • Loading branch information
basilhendroff authored Oct 18, 2020
1 parent 96b4beb commit 0d4fbd1
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions includes/fragment-3.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
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 );
define( 'CONCATENATE_SCRIPTS', false );
define( 'SAVEQUERIES', true );
}

// WP Super Cache plugin support.
define('WP_CACHE', true);
define ('WPCACHEHOME', '/usr/local/www/wordpress/wp-content/plugins/wp-super-cache/');

// Redis plugin support.
define( 'WP_REDIS_SCHEME', 'unix' );
define( 'WP_REDIS_PATH', '/var/run/redis/redis.sock' );
define( 'WP_REDIS_CLIENT', 'phpredis' );

0 comments on commit 0d4fbd1

Please sign in to comment.