Skip to content

Instantly share code, notes, and snippets.

@thierrypigot
Created May 28, 2015 08:30
Show Gist options
  • Save thierrypigot/238bae03e7167ba5457e to your computer and use it in GitHub Desktop.
Save thierrypigot/238bae03e7167ba5457e to your computer and use it in GitHub Desktop.
WordPress : un wp-config.php aux hormones
<?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