搜尋

首頁  >  問答  >  主體

laravel專案從本地上傳到雲端伺服器快取更新問題

在本地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_u1582phpcn_u15822740 天前455

全部回覆(2)我來回復

  • ringa_lee

    ringa_lee2017-05-16 16:51:17

    php artisan 快取:清除

    回覆
    0
  • 过去多啦不再A梦

    过去多啦不再A梦2017-05-16 16:51:17

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

    回覆
    0
  • 取消回覆