wp-config.phpの認証用ユニークキーってやつ
wp-config.php に書き込まなければいけない、認証用ユニークキーというのがある。
https://api.wordpress.org/secret-key/1.1/salt/ を貼り付けろ!
という指示があったので、
/*
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’);
*/
とコメントアウトして、
https://api.wordpress.org/secret-key/1.1/salt/
と貼り付けた。呼び出すのとか、どうすんの?とか思いつつ。
URL貼り付けるだけでいいわけないだろ!と自分で思いつつ、
WPのファイル一式を試しにサーバに
だだだだだ、とFFFTPでアップロードしたら、無事インストールできてしまった。
*****
無事WPをインストールできて普通に動いたので、忘れるところだった。
正解は、
https://api.wordpress.org/secret-key/1.1/salt/
というオンラインジェネレーターで生成される認証用キーを貼り付ける、だったw
リロードするたびに、認証用キーがランダム生成される。
というわけで、wp-config.phpファイルを上書きしてアップロード。無事にログインできた。
よかったよかった。
http://wpdocs.sourceforge.jp/wp-config.php_%E3%81%AE%E7%B7%A8%E9%9B%86