Fix missing NONCE_SALT warning

WP-Filebase Pro needs the NONCE_SALT constant for secure server activation requests.

If you get a warning like:

Warning: constant() [function.constant]: Couldn't find constant NONCE_SALT in .../wp-content/plugins/wp-filebase-pro/classes/AdminLite.php on line 131

NONCE_SALT is missing in wp-config.php.
To fix this, add this line to your wp-config.php:

define( 'NONCE_SALT', 'put some random characters here' );

You can also generate all salts here. Just insert this code block into wp-config.php.

VN:F [1.9.22_1171]
Rating: 3.0/5 (1 vote cast)
Fix missing NONCE_SALT warning, 3.0 out of 5 based on 1 rating

Leave a Reply

Your email address will not be published.