PHP warning

include(/var/www/html/protected/extensions/captchaExtended/CaptchaExtendedAction.php): failed to open stream: No such file or directory

/var/www/html/framework/YiiBase.php(404)

392     /**
393      * Class autoload loader.
394      * This method is provided to be invoked within an __autoload() magic method.
395      * @param string $className class name
396      * @param bool $classMapOnly whether to load classes via classmap only
397      * @return boolean whether the class has been loaded successfully
398      * @throws CException When class name does not match class file in debug mode.
399      */
400     public static function autoload($className,$classMapOnly=false)
401     {
402         // use include so that the error PHP file may appear
403         if(isset(self::$classMap[$className]))
404             include(self::$classMap[$className]);
405         elseif(isset(self::$_coreClasses[$className]))
406             include(YII_PATH.self::$_coreClasses[$className]);
407         elseif($classMapOnly)
408             return false;
409         else
410         {
411             // include class file relying on include_path
412             if(strpos($className,'\\')===false)  // class without namespace
413             {
414                 if(self::$enableIncludePath===false)
415                 {
416                     foreach(self::$_includePaths as $path)

Stack Trace

#2
+
 /var/www/html/protected/controllers/SiteController.php(27): spl_autoload_call("CaptchaExtendedAction")
22     public function actions(){
23         return array(
24             'captcha'=>array(
25                 'class'=>'CaptchaExtendedAction',
26                 // if needed, modify settings
27                 'mode'=>CaptchaExtendedAction::MODE_MATH,
28             ),
29         );
30     }
31 //    /** @ToDo  Execute this script for add seo name  in all categories. After execute delete it.  */
32     public function actionGgg()
#8
+
 /var/www/html/index.php(14): CApplication->run()
09  defined('YII_DEBUG') or define('YII_DEBUG',true);
10 
11  defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL',3);
12 
13 require_once($yii);
14 Yii::createWebApplication($config)->run();
2024-03-28 13:50:00 Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.0.25 Yii Framework/1.1.17