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/helpers/admin/statistics_helper.php(2835): spl_autoload_call("Limesurvey_lang")
2830         //pick the best font file if font setting is 'auto'
2831         if (is_null($statlangcode))
2832         {
2833             $statlangcode =  getBaseLanguageFromSurveyID($surveyid);
2834         }
2835         $statlang = new Limesurvey_lang($statlangcode);
2836 
2837         /*
2838         * this variable is used in the function shortencode() which cuts off a question/answer title
2839         * after $maxchars and shows the rest as tooltip (in html mode)
2840         */
#3
+
 /home/sondages.pro/htdocs/limesurvey_GIT/206/application/controllers/Statistics_userController.php(415): statistics_helper->generate_statistics(975921, array("N975921X24X263", "975921X25X267", "975921X25X272"), array("N975921X24X263", "975921X25X267", "975921X25X272"), 0, ...)
410                 $prb->moveStep($process_status);
411 
412             }    // end foreach -> loop through all questions
413 
414             $helper = new statistics_helper();
415             $statisticsoutput .= $helper->generate_statistics($iSurveyID, $summary, $summary, $publicgraphs, 'html', null,$language,false);
416 
417         }    //end if -> show summary results
418 
419         $data['statisticsoutput']=$statisticsoutput;
420         //done! set progress bar to 100%
#13
+
 /home/sondages.pro/htdocs/limesurvey_GIT/206/index.php(208): CApplication->run()
203         die (sprintf('%s should be writable by the webserver (755 or 775).', $runtimePath));
204     }
205 }
206 
207 
208 Yii::createApplication('LSYii_Application', $config)->run();
209 
210 /* End of file index.php */
211 /* Location: ./index.php */
2015-03-05 09:39:40 Apache/2.2.22 (Debian) Yii Framework/1.1.15