我正在关注本教程:
http://www.yiiframework.com/wiki/191/implementing-a-user-level-access-system/
但我不断收到错误:
include(User.php) [function.include]:打开流失败:没有这样的文件或目录
我不会发布整个堆栈跟踪,但是 YiiBase.php 在第 423 行有一个错误:
include($className.'.php');
谁能帮帮我吗?
但是该教程中没有提到创建一个名为 user 的类,只是 LevelLookUp,这就是我感到困惑的原因:/
我想我知道我哪里错了,我没有模型!
有人可以解释一下我需要做什么:
public function authenticate()
{
$username = strtolower($this->username);
// from database... change to suite your authentication criteria
// -- Nope, I wont include mine --
$user = User::model()->find('LOWER(username)=?', array($username));