WordPressの画面が白くなったら

今日あったこと

 

症状 :  domain-name/wordpress/ を開くと, 文字は表示されるが背景は真っ白で, 寂しいページになる. しかもなぜか重い. 修正しようとしても, ログインに失敗する.

原因 : 管理画面->一般設定->サイトアドレスのドメイン名が間違っていた

 

修正方法 :

wordpress サイト名変更 on Fedora(siteurl)

上記サイトを参考に,  以下のようにDBのsiteurlを書き直した. DB名とかは適宜読み替えてください.

[root@char-c3 ~]# mysql -u root -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 34
Server version: 5.1.73 Source distribution

Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type ‘help;’ or ‘\h’ for help. Type ‘\c’ to clear the current input statement.

mysql> use wordpress;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Database changed
mysql> select * from wp_options where option_name = “home”;
+———–+————-+——————————+———-+
| option_id | option_name | option_value | autoload |
+———–+————-+——————————+———-+
| 33 | home | http://char-c3.com/wordpress | yes |
+———–+————-+——————————+———-+
1 row in set (0.00 sec)

mysql> select * from wp_options where option_name = “siteurl”;
+———–+————-+————————–+———-+
| option_id | option_name | option_value | autoload |
+———–+————-+————————–+———-+
| 1 | siteurl | http://char-c3/wordpress | yes |
+———–+————-+————————–+———-+
1 row in set (0.00 sec)

mysql> update wp_options set option_value = “http://char-c3.com/wordpress” where option_name = “siteurl”;
Query OK, 1 row affected (0.00 sec)
Rows matched: 1 Changed: 1 Warnings: 0

mysql> select * from wp_options where option_name = “siteurl”;
+———–+————-+——————————+———-+
| option_id | option_name | option_value | autoload |
+———–+————-+——————————+———-+
| 1 | siteurl | http://char-c3.com/wordpress | yes |
+———–+————-+——————————+———-+
1 row in set (0.00 sec)

mysql> quit
Bye

これで解決. 導入早々めんどくさいトラブルに見舞われてしもうた

(シェルのメッセージ直貼り見づらいどうしよう)


Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.