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/emedics/protected/controllers/SiteController.php(100): CActiveRecord->__construct()
095         $this->render('contact',array('model'=>$model));
096     }
097 
098     public function actionRegister()
099     {
100         $model = new Member;
101         $this->performAjaxValidation($model);
102         if(isset($_POST['Member'])) {
103             $model->attributes = $_POST['Member'];
104             if($model->validate()) {
105                 $model->save(false);
#16
+
 /home/mitcarec/public_html/demo/emedics/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('Australia/Melbourne');
14 Yii::createWebApplication($config)->run();
2024-03-29 18:45:08 LiteSpeed Yii Framework/1.1.11