laravel專案從本地上傳到雲端伺服器快取更新問題
phpcn_u1582
phpcn_u1582 2017-05-16 16:49:17
0
2
468

在本地windows上開發的時候,.env檔案裡面資料庫名字叫test,我把整個專案資料夾ftp上傳到伺服器(centos7),env檔案裡面的資料庫名字改成了laravel
然後執行php artisan migrate,但出現如下錯誤,說找不到test資料庫:

  [PDOException]                                  
  SQLSTATE[HY000] [1049] Unknown database 'test'

本來就沒有test資料庫,哪裡來?
這是快取問題嗎?應該怎樣弄一下?

這是database.php:

'mysql' => [
    'driver' => 'mysql',
    'host' => env('DB_HOST', 'localhost'),
    'port' => env('DB_PORT', '3306'),
    'database' => env('DB_DATABASE', 'forge'),
    'username' => env('DB_USERNAME', 'forge'),
    'password' => env('DB_PASSWORD', ''),
    'charset' => 'utf8',
    'collation' => 'utf8_unicode_ci',
    'prefix' => '',
    'strict' => true,
    'engine' => null,
],

edit:

這是雲端主機的.env檔:

    APP_ENV=production
    APP_KEY=base64:fzg/000000000000000001qfE0=
    APP_DEBUG=false
    APP_LOG_LEVEL=debug
    APP_URL=http://localhost
    
    DB_CONNECTION=mysql
    DB_HOST=127.0.0.1
    DB_PORT=3306
    DB_DATABASE=laravel
    DB_USERNAME=root
    DB_PASSWORD=

這是本機上的.env檔:

    APP_ENV=local
    APP_KEY=base64:fzg/000000000000000001qfE0=
    APP_DEBUG=true
    APP_LOG_LEVEL=debug
    APP_URL=http://localhost
    
    DB_CONNECTION=mysql
    DB_HOST=127.0.0.1
    DB_PORT=3306
    DB_DATABASE=test
    DB_USERNAME=root
    DB_PASSWORD=
phpcn_u1582
phpcn_u1582

全部回覆(2)
左手右手慢动作

php artisan 快取:清除

过去多啦不再A梦

composer dumpautoload 试试
datebase.php 是 'default' => 'mysql',

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板