PHP warning

include(PDO.php) [<a href='function.include'>function.include</a>]: failed to open stream: No such file or directory

/home/storage/d/fd/96/spagnuoloarquitetura/yii-1.1.13.e9e4a0/framework/YiiBase.php(421)

409                         {
410                             include($classFile);
411                             if(YII_DEBUG && basename(realpath($classFile))!==$className.'.php')
412                                 throw new CException(Yii::t('yii','Class name "{class}" does not match class file "{file}".', array(
413                                     '{class}'=>$className,
414                                     '{file}'=>$classFile,
415                                 )));
416                             break;
417                         }
418                     }
419                 }
420                 else
421                     include($className.'.php');
422             }
423             else  // class name with namespace in PHP 5.3
424             {
425                 $namespace=str_replace('\\','.',ltrim($className,'\\'));
426                 if(($path=self::getPathOfAlias($namespace))!==false)
427                     include($path.'.php');
428                 else
429                     return false;
430             }
431             return class_exists($className,false) || interface_exists($className,false);
432         }
433         return true;

Stack Trace

#11
+
 /home/storage/d/fd/96/spagnuoloarquitetura/public_html/protected/models/Categorias.php(20): CActiveRecord::model("Categorias")
15      * @param string $className active record class name.
16      * @return Categorias the static model class
17      */
18     public static function model($className=__CLASS__)
19     {
20         return parent::model($className);
21     }
22 
23     /**
24      * @return string the associated database table name
25      */
#12
+
 /home/storage/d/fd/96/spagnuoloarquitetura/public_html/protected/components/BaseController.php(22): Categorias::model()
17     
18     public function init() {        
19         Yii::app()->clientScript->registerCoreScript('jquery');    
20 
21         $this->custom_guid     = str_replace('/','-',$this->uniqueId);
22         $this->categorias     = Categorias::model()->findAll(array('order'=>'ordem'));
23         $this->background     = Background::model()->findAll(array('order'=>'ordem'));
24         #$this->projetos     = Galeria::model()->findAll();
25 
26         $this->config=SiteConfig::model()->findByPk(1);
27 
#16
+
 /home/storage/d/fd/96/spagnuoloarquitetura/public_html/index.php(45): CApplication->run()
40 
41      
42 
43     require_once($yii);
44 
45     Yii::createWebApplication($config)->run();
46 
47      
48 
49     if(YII_DEBUG_DISPLAY_TIME) {
50 
2024-03-28 09:08:35 Apache Yii Framework/1.1.13