WAMP
XAMPP
AppServ
- 在本地端執行WORDPRESS的最快方法–BITNAMI
Setting
App | MySql U/P | port/port | setting | path |
AppServ | root/students(*) | 8080/3306 | / | c:\AppServ\www |
XAMPP | -/- | 8081/3307 | use menu(*)/ | C:\xampp\htdocs |
WAMP | root/null(*) | 8082/3308 | use menu(*) | C:\wamp64\www |
- Bitnami WAMP requests a password during the installation.
The default user is "root" and the password is the same that you set during the installation.
XAMPP
WAMP
- phpMyAdmin password setting
```
use mysql;
update user set authentication_string=password('your_password') where user='root';
FLUSH PRIVILEGES;
quit
```