Advertisement
tamanmerah

htaccess

Dec 14th, 2024
25
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. // memory
  2. define('WP_MEMORY_LIMIT', '256M');
  3. define( 'WP_MAX_MEMORY_LIMIT', '512' );
  4.  
  5. // security
  6. // define('RECAPTCHA_PUBLIC_KEY','**********');
  7. // define('RECAPTCHA_PRIVATE_KEY','**********');
  8. define('FORCE_SSL_ADMIN',true);
  9. // define('DISALLOW_FILE_EDIT', true );
  10.  
  11. // repair dan debug
  12. define( 'WP_ALLOW_REPAIR', true );
  13. define('WP_DEBUG', false );
  14. define('WP_DEBUG_LOG',true);
  15. define('WP_DEBUG_DISPLAY',false);
  16. define( 'SCRIPT_DEBUG', false );
  17. @ini_set('display_errors',0);
  18.  
  19. // compression
  20. define('ENFORCE_GZIP', true );
  21. define('COMPRESS_CSS', true );
  22. define('COMPRESS_SCRIPTS', true );
  23. define('WP_CACHE',true);
  24. define('CONCATENATE_SCRIPTS', true );
  25.  
  26. // additional
  27. define('WP_AUTO_UPDATE_CORE',false);
  28. define('WPLANG', 'ID');
  29. // define('AUTOSAVE_INTERVAL', 180 ); // in seconds
  30. define('DISABLE_WP_CRON', true);
  31. // define('MEDIA_TRASH',false);
  32. define( 'WC_REMOVE_ALL_DATA', true);
  33. define( 'WP_POST_REVISIONS',3);
  34. // define( 'EMPTY_TRASH_DAYS',3);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement