Last active
June 24, 2025 09:42
-
-
Save mralaminahamed/8a073470665259f2e455df44234d7719 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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