問題描述
我已經使用這個命令成功安裝了 laravel 5:
I've installed laravel 5 successfully by using this command:
composer create-project laravel/laravel test-laravel-5-project dev-develop --prefer-dist
我什至使用 php artisan -V
命令驗證了安裝的 laravel 的版本.輸出是
I even verified the version of installed laravel by using php artisan -V
command. The output was
Laravel Framework version 5.0-dev
然后我去app/config/database.php,給dafault db作為mysql,給配置作為
Then I went to app/config/database.php, gave dafault db as mysql and gave configurations as
'mysql' => [ 'driver' => 'mysql', 'host' => env('DB_HOST', 'localhost'), 'database' => env('DB_DATABASE', 'Logintestfive'), 'username'=> env('DB_USERNAME', 'root'), 'password'=> env('DB_PASSWORD', 'manasa'), 'charset'=> 'utf-8', 'collation'=> 'utf-8_unicode_ci', prefix=> '', 'strict'=> false, ]
然后我去localhost:8000/auth/register
填寫表格并提交數據,這是我得到的錯誤:
Then I went to localhost:8000/auth/register
and filled up the form and submitted the data and this is the error which I got:
PDOException in Connector.php line 47: SQLSTATE[28000] [1045] Access denied for user 'homestead'@'localhost' (using password: YES)
但是我既沒有使用 laravel homestead
在我的系統中安裝 Laravel 5,也沒有使用 vagrant
來設置 laravel homestead.它告訴我是這樣的:
But I've neither used laravel homestead
for installng laravel 5 in my system nor used vagrant
to set up laravel homestead. And it tells me like this:
in Connector.php line 47
at PDO->__construct('mysql:host=localhost;dbname=homestead', 'homestead', 'secret', array('0', '2', '0', false, '0')) in Connector.php line 47
at Connector->createConnection('mysql:host=localhost;dbname=homestead', array('driver' => 'mysql', 'host' => 'localhost', 'database' => 'homestead', 'username' => 'homestead', 'password' => 'secret', 'charset' => 'utf8', 'collation' => 'utf8_unicode_ci', 'prefix' => '', 'strict' => false, 'name' => 'mysql'), array('0', '2', '0', false, '0')) in MySqlConnector.php line 20
at MySqlConnector->connect(array('driver' => 'mysql', 'host' => 'localhost', 'database' => 'homestead', 'username' => 'homestead', 'password' => 'secret', 'charset' => 'utf8', 'collation' => 'utf8_unicode_ci', 'prefix' => '', 'strict' => false, 'name' => 'mysql')) in compiled.php line 10545
at ConnectionFactory->createSingleConnection(array('driver' => 'mysql', 'host' => 'localhost', 'database' => 'homestead', 'username' => 'homestead', 'password' => 'secret', 'charset' => 'utf8', 'collation' => 'utf8_unicode_ci', 'prefix' => '', 'strict' => false, 'name' => 'mysql')) in compiled.php line 10541
at ConnectionFactory->make(array('driver' => 'mysql', 'host' => 'localhost', 'database' => 'homestead', 'username' => 'homestead', 'password' => 'secret', 'charset' => 'utf8', 'collation' => 'utf8_unicode_ci', 'prefix' => '', 'strict' => false), 'mysql') in compiled.php line 10459
我該如何解決這些問題?
How can I fix those issues?
推薦答案
我遇到了類似的問題.我使用 php artisan serve
命令啟動了我的服務器,并編輯了 .env
文件并刷新了沒有反映任何更改的網頁!
I got a similar problem. I started my server using php artisan serve
command, and edited the .env
file and refreshed the web-page which did not reflect any changes!
我通過停止網絡服務器、編輯 .env.php
文件并重新啟動網絡服務器來修復它!
I fixed it by stopping the webserver, editing the .env.php
file and restarting the webserver!
所以我猜這是 .env.php
文件的緩存問題.
So I guess it's a caching-issue of the .env.php
file.
這篇關于Laravel 5 數據庫問題的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!