Created
January 10, 2024 04:09
-
-
Save Pavracer/ee39d75db848b4da8215107ba7c28f58 to your computer and use it in GitHub Desktop.
wp-config.php
This file contains 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
/** | |
* WordPress Database Table prefix. | |
* | |
* You can have multiple installations in one database if you give each | |
* a unique prefix. Only numbers, letters, and underscores please! | |
*/ | |
$table_prefix = 'Dl0Tqy_'; | |
define('WP_ALLOW_MULTISITE', true); | |
define( 'DISALLOW_FILE_EDIT', true ); // Added by Defender | |
define( 'CONCATENATE_SCRIPTS', false ); | |
define( 'WP_DEBUG', false ); // Added by Defender | |
define( 'WP_DEBUG_DISPLAY', false ); | |
define( 'WP_CACHE_KEY_SALT', '5c2c0914f7d44a604ebfa220fc299a0c' ); | |
define( 'WP_MEMORY_LIMIT', '5120M'); | |
define( 'WP_MAX_MEMORY_LIMIT', '5120M'); | |
/* That's all, stop editing! Happy publishing. */ | |
/** Absolute path to the WordPress directory. */ | |
if ( ! defined( 'ABSPATH' ) ) { | |
define( 'ABSPATH', dirname( __FILE__ ) . '/' ); | |
} | |
define('WPACU_ALLOW_DASH_PLUGIN_FILTER', true); | |
/** Sets up WordPress vars and included files. */ | |
require_once ABSPATH . 'wp-settings.php'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment