PHP Error
Description
include(SAutoCompleteAction.php) [<a href=‘function.include’>function.include</a>]: failed to open stream: No such file or directory
Source File
C:\wamp\www\yii\framework\YiiBase.php(337)
00325: * @param string class name
00326: * @return boolean whether the class has been loaded successfully
00327: */
00328: public static function autoload($className)
00329: {
00330: // use include so that the error PHP file may appear
00331: if(isset(self::$_coreClasses[$className]))
00332: include(YII_PATH.self::$_coreClasses[$className]);
00333: else if(isset(self::$_classes[$className]))
00334: include(self::$_classes[$className]);
00335: else
00336: {
00337: include($className.’.php’);
00338: return class_exists($className,false) || interface_exists($className,false);
00339: }
00340: return true;
00341: }
00342:
00343: /**
00344: * Writes a trace message.
00345: * This method will only log a message when the application is in debug mode.
00346: * @param string message to be logged
00347: * @param string category of the message
00348: * @see log
00349: */
Stack Trace
#0 C:\wamp\www\yii\framework\YiiBase.php(337): autoload()
#1 unknown(0): autoload()
#2 C:\wamp\www\yii\framework\YiiBase.php(188): spl_autoload_call()
#3 C:\wamp\www\yii\framework\web\CController.php(396): createComponent()
#4 C:\wamp\www\yii\framework\web\CController.php(376): SiteController->createActionFromMap()
#5 C:\wamp\www\yii\framework\web\CController.php(251): SiteController->createAction()
#6 C:\wamp\www\yii\framework\web\CWebApplication.php(310): SiteController->run()
#7 C:\wamp\www\yii\framework\web\CWebApplication.php(120): CWebApplication->runController()
#8 C:\wamp\www\yii\framework\base\CApplication.php(135): CWebApplication->processRequest()
#9 C:\wamp\www\app\index.php(11): CWebApplication->run()