Salting the new Wordpress wp-config file?

Hi,

Has anyone salted the new Wordpress wp-config file? It appears as though you have to add the salt code multiple times instead of once however whatever I try creates an error. Any suggestions please?

My latest install (on my local development server) was last week for a new client website, and I had no problems with the salt.

How many times did you add the salt code, it seems like I have to add it 10 times instead of just once.

Are you referring to this part of config.php?

/**#@+
 * Authentication Unique Keys and Salts.
 *
 * Change these to different unique phrases!
 * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
 * You can change these at any point in time to invalidate all existing cookies. This will force all users to have to log in again.
 *
 * @since 2.6.0
 */
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');

/**#@-*/

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.