PHP warning

include(limesurvey_lang.php): failed to open stream: No such file or directory

/home/sondages.pro/htdocs/limesurvey_GIT/206/framework/YiiBase.php(427)

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

Stack Trace

#2
+
 /home/sondages.pro/htdocs/limesurvey_GIT/206/application/controllers/admin/export.php(260): spl_autoload_call("limesurvey_lang")
255         // * the explang language code is used in SQL queries
256         // * the alang object is used to translate headers and hardcoded answers
257         // In the future it might be possible to 'post' the 'export language' from
258         // the exportresults form
259         $explang = Yii::app()->request->getPost('exportlang',$surveybaselang);
260         $elang = new limesurvey_lang($explang);
261 
262         //Get together our FormattingOptions and then call into the exportSurvey
263         //function.
264         $options = new FormattingOptions();
265         $options->selectedColumns = Yii::app()->request->getPost('colselect');
#5
+
 /home/sondages.pro/htdocs/limesurvey_GIT/206/application/core/Survey_Common_Action.php(99): CAction->runWithParamsInternal(export, ReflectionMethod, array("surveyid" => "975921", "sa" => "exportresults", "iSurveyId" => "975921", "iSurveyID" => "975921"))
094             $oMethod = new ReflectionMethod($this, $sDefault);
095         }
096 
097         // We're all good to go, let's execute it
098         // runWithParamsInternal would automatically get the parameters of the method and populate them as required with the params
099         return parent::runWithParamsInternal($this, $oMethod, $params);
100     }
101 
102     /**
103     * Some functions have different parameters, which are just an alias of the
104     * usual parameters we're getting in the url. This function just populates
#9
+
 /home/sondages.pro/htdocs/limesurvey_GIT/206/application/controllers/AdminController.php(164): CController->run("export")
159                     $this->redirect(array('/admin/authentication/sa/login'));
160                 }
161 
162             }
163 
164             return parent::run($action);
165     }
166 
167     /**
168     * Routes all the actions to their respective places
169     *
2014-12-23 11:35:35 Apache/2.2.22 (Debian) Yii Framework/1.1.15