Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // memory
- define('WP_MEMORY_LIMIT', '256M');
- define( 'WP_MAX_MEMORY_LIMIT', '512' );
- // security
- // define('RECAPTCHA_PUBLIC_KEY','**********');
- // define('RECAPTCHA_PRIVATE_KEY','**********');
- define('FORCE_SSL_ADMIN',true);
- // define('DISALLOW_FILE_EDIT', true );
- // repair dan debug
- define( 'WP_ALLOW_REPAIR', true );
- define('WP_DEBUG', false );
- define('WP_DEBUG_LOG',true);
- define('WP_DEBUG_DISPLAY',false);
- define( 'SCRIPT_DEBUG', false );
- @ini_set('display_errors',0);
- // compression
- define('ENFORCE_GZIP', true );
- define('COMPRESS_CSS', true );
- define('COMPRESS_SCRIPTS', true );
- define('WP_CACHE',true);
- define('CONCATENATE_SCRIPTS', true );
- // additional
- define('WP_AUTO_UPDATE_CORE',false);
- define('WPLANG', 'ID');
- // define('AUTOSAVE_INTERVAL', 180 ); // in seconds
- define('DISABLE_WP_CRON', true);
- // define('MEDIA_TRASH',false);
- define( 'WC_REMOVE_ALL_DATA', true);
- define( 'WP_POST_REVISIONS',3);
- // define( 'EMPTY_TRASH_DAYS',3);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement