jepp. all done. changed the .htaccess file to point to the new ms-blogs.php …
followed the upgrade instructions word-for-word.
now that I went checking everything, one thing stands out to me though:
in my wp-config.php I have these entries:
define('LOGGED_IN_KEY', '24chars');<br />
define('LOGGED_IN_SALT', '24chars');<br />
define('AUTH_KEY', '24chars');<br />
define('SECURE_AUTH_KEY', '24chars');<br />
define('SECURE_AUTH_SALT', '24chars');<br />
define( 'NONCE_KEY', '24chars' );<br />
define( 'AUTH_SALT', '24chars' );<br />
define( 'NONCE_SALT', '64chars' );<br />
if I follow the link to generate new ones at: link http://api.wordpress.org/secret-key/1.1/ it only generates 4 of those keys with a 64char length, i.e.
define('AUTH_KEY', ';wr^lK7fkgOlYE&L}Nf5.+h?f#ZYD^or.-bGyFZ&F?9RHFv=-+1o]~85-OO/g52′);
define(‘SECURE_AUTH_KEY’, ‘o,r}CQN;Bh-s} ArLK!+:iEipe![/4Zxz$+2G&,Xg+9XH-e<+[;Xw4A/weg>dH@%');
define('LOGGED_IN_KEY', '{LRe)Y`)2~,8t[@ %VnW,:}fdEi<a[p&(qtw)/Wf+<2jk@}Z]zw9Xzbk1Nc|R|’);
define(‘NONCE_KEY’, ‘/;*CouN,QU;X9_R=u(_RPPdN-3/lY;^S;.wL]A% 8Ap.XaL)u?P>T|K3 c]4!-GR’);
Now shall I generate a new set of those long ones and replace my short ones? And why would the others be short?
Not sure if this is in any way related at all, I just stumbled upon it…