The new Wordpress 2.5, besides many other updates, comes along with a new SECRET_KEY in the config file. I’m sure like many other people, most of you might have missed that. Because, we were told not to change the config file.
define('SECRET_KEY', 'put your unique phrase here');
can help you with better encryption for user passwords in the database. So, try to have a rather complex and long “unique phrase”. Wordpress suggest you to try out the perfect Password Generator.
While we’re at the new config settings introduced in Wordpress 2.5, you can have a look at the way to increase the memory allocation to PHP in your Wordpress Installation.
define('WP_MEMORY_LIMIT', '512MB');
Increase PHP Memory to 512MB.
Read all the other settings of Wordpress Config.
UPDATES
- 2008, 25th April: Ryan Boren have a more detailed article on the new SECRET_KEY introduced in Wordpress 2.5.
Post a Comment