Skip to content

Instantly share code, notes, and snippets.

@mishterk
Last active December 12, 2022 04:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mishterk/3a32c617c2581a9ad384586cb337d798 to your computer and use it in GitHub Desktop.
Save mishterk/3a32c617c2581a9ad384586cb337d798 to your computer and use it in GitHub Desktop.
<?php
define('WP_DEBUG_LOG', true);
define('WP_DEBUG_LOG', '/path/to/custom/log/file.log');
<?php
define('WP_DEBUG', true);
define('WP_DEBUG_LOG', true);
define('WP_DEBUG_DISPLAY', true);
<?php
define('WP_DEBUG', true);
define('WP_DEBUG_LOG', true);
<?php
define('WP_AUTO_UPDATE_CORE', 'minor');
<?php
define('WP_AUTO_UPDATE_CORE', true);
<?php
define('AUTH_KEY', 'put your unique phrase here');
define('SECURE_AUTH_KEY', 'put your unique phrase here');
define('LOGGED_IN_KEY', 'put your unique phrase here');
define('NONCE_KEY', 'put your unique phrase here');
define('AUTH_SALT', 'put your unique phrase here');
define('SECURE_AUTH_SALT', 'put your unique phrase here');
define('LOGGED_IN_SALT', 'put your unique phrase here');
define('NONCE_SALT', 'put your unique phrase here');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment