Laravel 4 database.php无法访问DB

时间:2014-08-26 20:56:32

标签: php mysql svn laravel laravel-4

我的工作计算机上有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文件的所有内容,我仍然会收到相同的错误。

1 个答案:

答案 0 :(得分:0)

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

app/config/local/database.php

app/local/database.php

在一台机器上识别本地环境并不能在第二台机器上工作,以及Laravel从不同文件中读取数据,这可能就是一种方法。