PHP warning

simplexml_load_file(): I/O warning : failed to load external entity ""

D:\CloudStation\Pluto\Dossier Utilisateurs\Ju\Mes programmes\Wamp64\www\Temp\limesurvey250plus-build160506\limesurvey\application\models\TemplateConfiguration.php(113)

101             else
102             {
103                 $this->path = Yii::app()->getConfig("standardtemplaterootdir").DIRECTORY_SEPARATOR.$this->sTemplateName;
104                 $this->xmlFile = $this->path.DIRECTORY_SEPARATOR.'config.xml';
105             }
106 
107         }
108         else
109         {
110             $this->xmlFile = $this->path.DIRECTORY_SEPARATOR.'config.xml';
111         }
112         //var_dump(realpath ($this->xmlFile)); die();
113         $this->config = simplexml_load_file(realpath ($this->xmlFile));
114 
115         // The template configuration.
116         $this->viewPath = $this->path.DIRECTORY_SEPARATOR.$this->config->engine->pstpldirectory.DIRECTORY_SEPARATOR;
117         $this->siteLogo = (isset($this->config->files->logo))?$this->config->files->logo->filename:'';
118 
119         // condition for user's template prior to 160219
120         $this->filesPath    = (isset($this->config->engine->filesdirectory))? $this->path.DIRECTORY_SEPARATOR.$this->config->engine->filesdirectory.DIRECTORY_SEPARATOR : $this->path . '/files/';
121         // condition for user's template prior to 160504
122         $this->overwrite_question_views    = (isset($this->config->engine->overwrite_question_views))? $this->config->engine->overwrite_question_views=='true' : false;
123 
124         $this->cssFramework = $this->config->engine->cssframework;
125         $this->packages     = (array) $this->config->engine->packages->package;

Stack Trace

#0
+
 D:\CloudStation\Pluto\Dossier Utilisateurs\Ju\Mes programmes\Wamp64\www\Temp\limesurvey250plus-build160506\limesurvey\application\models\TemplateConfiguration.php(113): simplexml_load_file("")
108         else
109         {
110             $this->xmlFile = $this->path.DIRECTORY_SEPARATOR.'config.xml';
111         }
112         //var_dump(realpath ($this->xmlFile)); die();
113         $this->config = simplexml_load_file(realpath ($this->xmlFile));
114 
115         // The template configuration.
116         $this->viewPath = $this->path.DIRECTORY_SEPARATOR.$this->config->engine->pstpldirectory.DIRECTORY_SEPARATOR;
117         $this->siteLogo = (isset($this->config->files->logo))?$this->config->files->logo->filename:'';
118 
#1
+
 D:\CloudStation\Pluto\Dossier Utilisateurs\Ju\Mes programmes\Wamp64\www\Temp\limesurvey250plus-build160506\limesurvey\application\models\Template.php(140): TemplateConfiguration->setTemplateConfiguration("_clicadom", "")
135      * @return StdClass
136      */
137     public static function getTemplateConfiguration($sTemplateName='', $iSurveyId='')
138     {
139         $oTemplate = new TemplateConfiguration;
140         $oTemplate->setTemplateConfiguration($sTemplateName, $iSurveyId);
141         return $oTemplate;
142     }
143 
144     /**
145      * Return the list of ALL files present in the file directory
#2
+
 D:\CloudStation\Pluto\Dossier Utilisateurs\Ju\Mes programmes\Wamp64\www\Temp\limesurvey250plus-build160506\limesurvey\application\models\Template.php(295): Template::getTemplateConfiguration("_clicadom", "")
290      */
291     public static function getInstance($sTemplateName='', $iSurveyId='')
292     {
293         if (empty(self::$instance))
294         {
295             self::$instance = self::getTemplateConfiguration($sTemplateName, $iSurveyId);
296         }
297         return self::$instance;
298     }
299 
300     /**
2016-05-11 13:51:32 Apache/2.4.18 (Win64) OpenSSL/1.0.2g PHP/7.0.6 Yii Framework/1.1.17