PHP warning

include(/home5/yasir/public_html/clients/abrarlc/cloudforms/yii/framework/web/CHttpRequest.php): Failed to open stream: No such file or directory

/home5/yasir/public_html/clients/abrarlc/cloudforms/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

#9
+
 /home5/yasir/public_html/clients/abrarlc/cloudforms/index.php(25): YiiBase::createWebApplication("/home5/yasir/public_html/clients/abrarlc/cloudforms/protected/co...")
20 require_once('protected/modules/common_functions.php');
21 require_once('protected/modules/Curl.class.php');
22 include_once("Google_Spreadsheet.php");
23 set_include_path("library");
24 require_once($yii);
25 Yii::createWebApplication($config)->run();
2025-01-28 20:57:31 Apache Yii Framework/1.1.10