gpt4 book ai didi

php - Laravel 4 database.php 无法访问数据库

转载 作者:行者123 更新时间:2023-11-30 22:57:45 25 4
gpt4 key购买 nike

我有一个 laravel4 应用程序在我的工作电脑上运行。我最近通过 svn 下载文件到我的家用机器上,当我尝试在浏览器中打开项目时,出现以下错误:

ErrorException (E_UNKNOWN)

SQLSTATE[HY000] [1045] Access denied for user 'root'@'localhost' (using password: YES) (View: C:\wamp\www\xzy.tld\app\views\layout.blade.php) (View: C:\wamp\www\xyz.tld\app\views\layout.blade.php)

这是我的database.php 文件:

'mysql' => array(
'driver' => 'mysql',
'host' => 'localhost',
'database' => 'xyz',
'username' => 'root',
'password' => '',
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
'prefix' => '',
),

我知道我的家用机器不需要 mysql 密码,所以我不知道为什么会这样?我应该运行某种 composer 命令来更新我的项目吗?

编辑:奇怪的是,如果我导航到框架内的 Connector.php 类和 var_dump $config 变量,我会得到这个:

array (size=9)
'driver' => string 'mysql' (length=5)
'host' => string '127.0.0.1' (length=9)
'database' => string 'xyz' (length=10)
'username' => string 'root' (length=4)
'password' => string 'root' (length=4)
'charset' => string 'utf8' (length=4)
'collation' => string 'utf8_unicode_ci' (length=15)
'prefix' => string '' (length=0)
'name' => string 'mysql' (length=5)

我不知道这些信息是从哪里来的,因为在我的 database.php 文件中我没有设置密码。如果我删除 database.php 文件的所有内容,我仍然会遇到同样的错误。

最佳答案

听起来您正在读取错误的配置文件。检查两者中的凭据

app/config/local/database.php

app/local/database.php

这可能是您要识别一台机器上的本地环境在第二台机器上不起作用以及 Laravel 从不同文件中读取的任何方式。

关于php - Laravel 4 database.php 无法访问数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25514998/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com