define( 'AUTH_KEY' , 'KWKgGzMOGsfB8EqD3dSCoqEtLlLr6zY2cvYHu9IKpbyKVsaCntqwDHfnW12XRKRP' ); define( 'SECURE_AUTH_KEY' , 'JEteeNebGLR5TeBJgGeIA87FQtZ8daayoMjAoKwMVMrxi8a6JhFNVrHx332VGsOQ' ); define( 'LOGGED_IN_KEY' , 'TAOVKSvB5qnHFNDE0NgUocluj402p2hkdYGTAqsqMTxAW0O9Q8IY7DdeWo3JjSia' ); define( 'NONCE_KEY' , 'C1jWIOTxHApV2sCbtCmoS5pWSJvLjHK1dTIHi6LsF55RjVN1G16O9aEpTkiUOYhd' ); define( 'AUTH_SALT' , 'rkAJUM00LhgI66jF8f5RjDjTmdLLkTGcsXxSYgV2BiVbRCvuXg1UmcUTClfJ1gJe' ); define( 'SECURE_AUTH_SALT', 'o4y4W0ylyGayWQr2g9b5tpswUrtqvTVnxtpJJhdwi0RHCPWb1Qb1OCNh2IDSj0IL' ); define( 'LOGGED_IN_SALT' , 'K3IjTESsoFsNMoKMWNMHHxZqB3kMsIn4TI6WlEh4j8iw7FqtKG10AGWcDoEqHUL1' ); define( 'NONCE_SALT' , 'jRxYMZV5nzWpIddtYoSKuYUlVs9N8Jw5hTdzuLSqLtEGDJAk8pW0aEoCthrXKHDN' );
This feature is deprecated! We highly recommend generating your own keys and salts instead of relying on a remote service to do this for you.
If you have python
installed, try running this command (all on
one line):
python -c "import random; import string; r = random.SystemRandom(); print(chr(10).join('define( {q}{0}{q}{1}, {q}{2}{q} );'.format(key,' '*(16-len(key)),''.join(r.choice(string.ascii_letters+string.digits)for _ in range(64)),q=chr(39))for key in 'AUTH_KEY SECURE_AUTH_KEY LOGGED_IN_KEY NONCE_KEY AUTH_SALT SECURE_AUTH_SALT LOGGED_IN_SALT NONCE_SALT'.split(' ')))"
Or, if you're using a .env
file for configuration (also
recommended), try this:
python -c "import random; import string; r = random.SystemRandom(); print(chr(10).join('{0}={q}{1}{q}'.format(key,''.join(r.choice(string.ascii_letters+string.digits)for _ in range(64)),q=chr(34))for key in 'AUTH_KEY SECURE_AUTH_KEY LOGGED_IN_KEY NONCE_KEY AUTH_SALT SECURE_AUTH_SALT LOGGED_IN_SALT NONCE_SALT'.split(' ')))"