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

#6
+
 /home/mitcarec/protected/euromaster/protected/models/Membership.php(23): CActiveRecord::model("Membership")
18      * @param string $className active record class name.
19      * @return Membership the static model class
20      */
21     public static function model($className=__CLASS__)
22     {
23         return parent::model($className);
24     }
25     
26     /**
27      * @return string the associated database table name
28      */
#7
+
 /home/mitcarec/protected/euromaster/protected/views/site/libertypin.php(40): Membership::model()
35     <div class="row">
36         <?php echo $form->labelEx($model,'pinPrice'); ?>
37         <?php
38         $criteria = new CDbCriteria;
39         $criteria->condition = "membershipFee > 0"; 
40         echo $form->dropDownList($model,'pinPrice', CHtml::listData(Membership::model()->findAll($criteria), 'membershipFee', 'membershipName')); ?>
41         <?php echo $form->error($model,'pinPrice'); ?>
42     </div>
43 
44     <div class="row">
45         <?php echo $form->labelEx($model,'email'); ?>
#12
+
 /home/mitcarec/protected/euromaster/protected/controllers/SiteController.php(272): CController->render("libertypin", array("model" => LibertyPinForm))
267             {
268                 $this->render('libertypinconfirm', array('data'=>array('memberId'=>$model->email, 'amount'=>$model->amount, 'libertyAcc'=>$model->libertyAcc, 'pinPrice'=>$model->pinPrice, 'pins' => $model->pins)));
269                 return;
270             }
271         }
272         $this->render('libertypin',array('model'=>$model));
273     }
274     
275         
276     public function actionLibertySuccess()
277     {
2024-03-29 11:37:38 LiteSpeed Yii Framework/1.1.11