程式狂想筆記

一個攻城師奮鬥史

0%

wagon架設筆記

試著用wagon架設laravel
先做一下筆記….

Releases · laravel-dojo/wagon下載解壓縮

  1. 執行/wagon/uwamp/UwAmp.exe
1
2
3
Apache 已啟用 rewrite module、Document Root 設定在 wagon\uwamp\www\default、port 改設定為 8000
MySQL port 改設定為 33060,可用 root/root 登入
adminer 位置為 http://localhost:8000/adminer
  1. 想使用內建Laravel-demo範例,可參考www/demo1
    點擊 apache config 更改 wagon:8000裡的 Document Root: {DOCUMENTPATH}/demo1/public

  2. 調整laravel env mysql環境變數
    EX:

    1
    2
    3
    4
    5
    6
    DB_CONNECTION=mysql
    DB_HOST=127.0.0.1
    DB_PORT=33060
    DB_DATABASE=homestead
    DB_USERNAME=root
    DB_PASSWORD=root

請順便建立你命名DB名稱(DB_DATABASE)

4.在laravel 執行下面指令
php artisan migrate

1
SQLSTATE[42S02]: Base table or view not found: 1146 Table 'homestead.tasks' doesn't exist (SQL: select * from `tasks` order by `created_at` desc) search►

出現以上錯誤代表沒執行php artisan migrate

參考來源
Releases · laravel-dojo/wagon
What step am I missing?