PHP warning

include(/home/mitcarec/yii/framework/db/schema/mysql/CMysqlSchema.php): failed to open stream: No such file or directory

/home/mitcarec/yii/framework/YiiBase.php(399)

387     /**
388      * Class autoload loader.
389      * This method is provided to be invoked within an __autoload() magic method.
390      * @param string $className class name
391      * @return boolean whether the class has been loaded successfully
392      */
393     public static function autoload($className)
394     {
395         // use include so that the error PHP file may appear
396         if(isset(self::$classMap[$className]))
397             include(self::$classMap[$className]);
398         else if(isset(self::$_coreClasses[$className]))
399             include(YII_PATH.self::$_coreClasses[$className]);
400         else
401         {
402             // include class file relying on include_path
403             if(strpos($className,'\\')===false)  // class without namespace
404             {
405                 if(self::$enableIncludePath===false)
406                 {
407                     foreach(self::$_includePaths as $path)
408                     {
409                         $classFile=$path.DIRECTORY_SEPARATOR.$className.'.php';
410                         if(is_file($classFile))
411                         {

Stack Trace

#8
+
 /home/mitcarec/protected/euromaster/protected/controllers/SiteController.php(79): CActiveRecord->__construct()
74         $this->render('contact',array('model'=>$model));
75     }
76 
77     public function actionRegister()
78     {
79         $model = new Member;
80         $this->performAjaxValidation($model);
81         if(isset($_POST['Member'])) {
82             $model->attributes = $_POST['Member'];
83             if($model->validate()) {
84                 $model->save(false);
#16
+
 /home/mitcarec/public_html/demo/euromaster/index.php(14): CApplication->run()
09 // specify how many levels of call stack should be shown in each log message
10 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL',3);
11 
12 require_once($yii);
13 date_default_timezone_set('Asia/Dhaka');
14 Yii::createWebApplication($config)->run();
2024-03-29 10:45:30 LiteSpeed Yii Framework/1.1.11