Created
May 28, 2015 08:30
-
-
Save thierrypigot/238bae03e7167ba5457e to your computer and use it in GitHub Desktop.
WordPress : un wp-config.php aux hormones
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 | |
| /** Errors Management **/ | |
| @ini_set('display_errors', false); | |
| define('WP_DEBUG', false); | |
| /** Revisions Management **/ | |
| define('WP_POST_REVISIONS', false); | |
| /** Disable auto update **/ | |
| define( 'WP_AUTO_UPDATE_CORE', false ); | |
| /** Filtered uploads **/ | |
| define( 'ALLOW_UNFILTERED_UPLOADS', false ) ; | |
| /** Security **/ | |
| define( 'DISALLOW_FILE_EDIT', true ); // Interdiction de modifier les fichiers | |
| define( 'DISALLOW_FILE_MODS', true ); // interdit la modif. des fichiers plugins/themes/core | |
| define( 'POST_BY_EMAIL', true ); // Interdiction de l'envoi d'article par e-mail | |
| define( 'COOKIEHASH', md5( $siteurl . 'Martine à la plage' . $siteurl ) ); // Protection des cookies | |
| /** Gravity Forms licence key **/ | |
| define( 'GF_LICENSE_KEY', 'gf...key' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment