問題描述
我有使用 Laravel 4.2 構建的舊項目.我收到以下錯誤
I have old project which built using Laravel 4.2.I am getting following error
PDO 異常 (1045)SQLSTATE[HY000] [1045] 用戶 'root'@'localhost' 訪問被拒絕(使用密碼:YES)
PDOException (1045) SQLSTATE[HY000] [1045] Access denied for user 'root'@'localhost' (using password: YES)
我已經用谷歌搜索并嘗試了每一個想法,但我無法解決它
I have googled and tried every think but i couldn't able to fix it
.env 文件
APP_KEY=az9tq5VHQCV9g5m2CsgY89jtijrCMgEA
DB_HOST=localhost
DB_DATABASE=billing
DB_USERNAME=root
DB_PASSWORD=1234
database.php
'mysql' => array(
'driver' => 'mysql',
'host' => 'localhost',
'database' => 'billing',
'username' => 'root',
'password' => '1234',
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
'prefix' => '',
),
誰能指導我哪里做錯了?
Can any one guide me where m doing wrong ?
注意:在提出問題之前,我嘗試更新 composer update 以及大多數 stackoverflow 答案.
Note: Before asking question i tried by updating composer update as well as most of the stackoverflow answers.
更新
我已經通過創建 php 文件測試了這個連接
I have tested this connection by creating php file
<?php
$servername = "localhost";
$username = "root";
$password = "1234";
// Create connection
$conn = new mysqli($servername, $username, $password);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
echo "Connected successfully";
?>
我會收到連接成功的消息
i will get Connected successfully message
推薦答案
Laravel 4.x 甚至不支持 ENV 文件.您只需要查看 ./config/[env name]/database.php 中的設置是否正確.
Laravel 4.x doesn't even support ENV files. You just have to see whether settings in ./config/[env name]/database.php are correct.
這篇關于Laravel 4.2 中的用戶“root"@“localhost"(使用密碼:YES)拒絕 Laravel 訪問的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!