Quantcast
Channel: WordPress.org Forums » All Posts
Viewing all articles
Browse latest Browse all 112836

Josh on "ERROR MESSAGE..."

$
0
0

Certainly.

You will need to use FTP or your hosts CPanel software to access your WordPress file directories. One there, in your root folder, you will see the file wp-config.php.

Open this in a file editor software... like NotePad++.

Look for the code where definitions for the salt keys are set... it should be toward the top of the file:

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');

Then, just add the code to a new line below all of them.

Final code should look similar to this:

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');
define('WP_MEMORY_LIMIT', '64M');

Notice the bottom line.


Viewing all articles
Browse latest Browse all 112836

Trending Articles