WordPress 手動安裝步驟

新手還是建議直接 XAMPP 處理

建立資料庫的使用者

create user someuser@localhost identified by '12345';
grant all on db.table to someuser@localhost;
flush privileges;