steps
-
download
-
download vc_redist.x64.exe
-
download wampserver direct url wampserver3_x64_apache2.4.17_mysql5.7.9_php5.6.16_php7.0.0.exe
-
download wordpress-4.4.2.zip
-
-
install
-
install
vc_redist.x64.exe
-
install
wampserver3
-
-
setup wordpress
-
use
wampserver
’s mysql console changeroot
’s pasword, check zhihuEnter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 4 Server version: 5.7.9 MySQL Community Server (GPL) Copyright (c) 2000, 2015, 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 mysql; Database changed mysql> update user set password=authentication_string('123456') where user='root'; ERROR 1054 (42S22): Unknown column 'password' in 'field list' mysql> update user set authentication_string=password('123456') where user='root'; Query OK, 1 row affected, 1 warning (0.00 sec) Rows matched: 1 Changed: 1 Warnings: 1
-
create a database named
wordpress
use phpmyadmin# 1. login use user root and password 123456 # 2. create database wordpress
-
unzip
wordpress-4.4.2.zip
# 1. copy `wordpress` to `C:\wamp64\www`
-
visit http://localhost/wordpress/ follow the steps
-