WordPress教程:http://paranimage.com/wordpress/tutorials/
WordPress教程:http://help.wopus.org/mysql-manage/170.html
中文官方手册:http://codex.wordpress.org/zh-cn:Main_Page
localhost解释
Apache解释不了localhost,使用127.0.0.1正常。
这个是DNS映射的问题,修改 C:\Windows\System32\drivers\etc\hosts
# localhost name resolution is handled within DNS itself.
127.0.0.1 localhost
--修改root的密码
use mysql;
update user set password=password('pwd') where user='root';
--建立名为wordpress的数据库:
create database wordpress;
--创建用户wproot,wordpress:
grant all privileges on wordpress.* to 'wproot'@'localhost' identified by '123456';
--wordpress:wproot:123456