我正在运行Kohana v3.2我只是尝试使用小型MVC启动并运行,并推荐使用此系统。我正在学习本教程:http://kowsercse.com/2011/09/04/kohana-tutorial-beginners/
在我开始添加新文章部分之前,一切似乎都进展顺利,我创建了文件,但当我将浏览器指向文章/新控制器/操作时,我收到此错误:
Database_Exception [ 2 ]: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: Access denied for user 'ODBC'@'localhost' (using password: NO)
MODPATH\database\classes\kohana\database\mysql.php [ 67 ]
62 catch (Exception $e)
63 {
64 // No connection exists
65 $this->_connection = NULL;
66
67 throw new Database_Exception(':error',
68 array(':error' => $e->getMessage()),
69 $e->getCode());
70 }
71
72 // \xFF is a better delimiter, but the PHP driver uses underscore
我还是PHP的新手,也是Kohana的新手,但是从错误中猜测ORM正试图用用户名ODBC访问我的数据库但是我还没有在我到目前为止创建的页面/文件中的任何地方定义它,这是我的database.php配置,它位于:application / config
<?php defined('SYSPATH') or die('No direct script access.');
return array
(
'default' => array
(
'type' => 'mysql',
'connetion' => array
(
'hostname' => '127.0.0.1',
'database' => 'kohana_blog',
'username' => 'root',
'password' => '',
'persistent' => FALSE,
),
'table_prefix' => '',
'charset' => 'UTF8',
'caching' => FALSE,
'profiling' => TRUE,
)
);
任何想法都会很好,谢谢你:)。
答案 0 :(得分:1)
我想你已经安装了ODBC/Connector - 它是一个数据库驱动程序,它自己创建(ODBC
)作为默认用户。因为您没有在配置中指定用户(并且您没有,因为您有拼写错误;))它默认尝试与ODBC
连接。
如果您更正了数据库配置文件的第8行,则所有文件都应该开始正常工作。
...
'type' => 'mysql',
'connection' => array
(
'hostname' => '127.0.0.1',
...
哦,除非你的主机文件设置奇怪;您应该可以使用localhost
代替127.0.0.1
- 并不是说有任何区别(除了localhost
无论您使用的是IPv4还是IPv6都可以使用的事实)可能只是更容易阅读/输入。