PHP Error

include(/home1/skipgrid/public_html/framework/web/CHttpRequest.php): failed to open stream: No such file or directory

/home1/skipgrid/public_html/framework/YiiBase.php(400)

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

Stack Trace

#9
+
 /home1/skipgrid/public_html/index.php(19): YiiBase::createWebApplication("/home1/skipgrid/public_html/protected/config/main.php")
14 //show profiler
15 defined('YII_DEBUG_SHOW_PROFILER') or define('YII_DEBUG_SHOW_PROFILER',true);
16 
17 
18 require_once($yii);
19 $app = Yii::createWebApplication($config);
20 $app->run();
2024-12-23 00:46:03 Apache Yii Framework/1.1.8