Viewing 1 replies (of 1 total)
  • Plugin Contributor Calin Vingan

    (@calinvingan)

    Hey,

    Make sure you have a correct /wp_config.php file

    NONCE_KEY is set up there and you should have it for your blog safety.

    Actually you should have all these constants set up in wp_config.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’);

    Calin

Viewing 1 replies (of 1 total)
  • The topic ‘NONCE_KEY error showing on site’ is closed to new replies.