include(SELF.php) [<a href='function.include'>function.include</a>]: failed to open stream: No such file or directory
00326: * @param string class name
00327: * @return boolean whether the class has been loaded successfully
00328: */
00329: public static function autoload($className)
00330: {
00331: // use include so that the error PHP file may appear
00332: if(isset(self::$_coreClasses[$className]))
00333: include(YII_PATH.self::$_coreClasses[$className]);
00334: else if(isset(self::$_classes[$className]))
00335: include(self::$_classes[$className]);
00336: else
00337: {
00338: include($className.'.php');
00339: return class_exists($className,false) || interface_exists($className,false);
00340: }
00341: return true;
00342: }
00343:
00344: /**
00345: * Writes a trace message.
00346: * This method will only log a message when the application is in debug mode.
00347: * @param string message to be logged
00348: * @param string category of the message
00349: * @see log
00350: */
Стектрейс:
#0 Z:\home\yblog\www\yii\framework\YiiBase.php(338): autoload()
#1 unknown(0): autoload()
#2 Z:\home\yblog\www\blog\protected\components\UserIdentity.php(33): spl_autoload_call()
#3 Z:\home\yblog\www\blog\protected\models\LoginForm.php(50): UserIdentity->authenticate()
#4 Z:\home\yblog\www\yii\framework\validators\CInlineValidator.php(39): LoginForm->authenticate()
#5 Z:\home\yblog\www\yii\framework\validators\CValidator.php(178): CInlineValidator->validateAttribute()
#6 Z:\home\yblog\www\yii\framework\base\CModel.php(150): CInlineValidator->validate()
#7 Z:\home\yblog\www\blog\protected\controllers\SiteController.php(88): LoginForm->validate()
#8 Z:\home\yblog\www\yii\framework\web\actions\CInlineAction.php(32): SiteController->actionLogin()
#9 Z:\home\yblog\www\yii\framework\web\CController.php(300): CInlineAction->run()
#10 Z:\home\yblog\www\yii\framework\web\CController.php(278): SiteController->runAction()
#11 Z:\home\yblog\www\yii\framework\web\CController.php(257): SiteController->runActionWithFilters()
#12 Z:\home\yblog\www\yii\framework\web\CWebApplication.php(324): SiteController->run()
#13 Z:\home\yblog\www\yii\framework\web\CWebApplication.php(121): CWebApplication->runController()
#14 Z:\home\yblog\www\yii\framework\base\CApplication.php(135): CWebApplication->processRequest()
#15 Z:\home\yblog\www\blog\index.php(14): CWebApplication->run()
Может уже кто из юишников встречался? Troy, ты где?