Skip to content

Instantly share code, notes, and snippets.

@mralaminahamed
Last active June 24, 2025 09:42
Show Gist options
  • Select an option

  • Save mralaminahamed/8a073470665259f2e455df44234d7719 to your computer and use it in GitHub Desktop.

Select an option

Save mralaminahamed/8a073470665259f2e455df44234d7719 to your computer and use it in GitHub Desktop.
<?php
// Enable Development mode
define( 'WP_DEVELOPMENT_MODE', 'plugin' );
define( 'WP_ENVIRONMENT_TYPE', 'development' );
define( 'CONCATENATE_SCRIPTS', false );
define( 'COMPRESS_SCRIPTS', false );
define( 'COMPRESS_CSS', false );
define('ENFORCE_GZIP', true);
define('SAVEQUERIES', true);
// Enable WP_DEBUG mode
define( 'WP_DEBUG', true );
define( 'WP_DEBUG_LOG', true );
define( 'WP_DEBUG_DISPLAY', false );
@ini_set( 'display_errors', 0 );
define( 'SCRIPT_DEBUG', true );
define( 'WP_MEMORY_LIMIT', '200M' );
define( 'WP_MAX_MEMORY_LIMIT', '256M' );
// Disable block external url
define('WP_HTTP_BLOCK_EXTERNAL', false);
define( 'FS_METHOD', 'direct' );
define( 'QM_ENABLE_CAPS_PANEL', true );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment