Twig\Error\LoaderError

Unable to find template "./subviews/header/progress_bar.twig" (looked into: /home/rcedo7ia/public_html/esat/themes/survey/fruity/views, /home/rcedo7ia/public_html/esat/themes/survey/vanilla/views, /home/rcedo7ia/public_html/esat/application/views) in "__string_template__e7eb6c5ed69c17a52c11cd9e3b78b89db8e8a369fc70fff4315df1cd449157e0" at line 103.

/home/rcedo7ia/public_html/esat/application/third_party/Twig/Loader/FilesystemLoader.php(265)

253                 }
254 
255                 return $this->cache[$name] = $path.'/'.$shortname;
256             }
257         }
258 
259         $this->errorCache[$name] = sprintf('Unable to find template "%s" (looked into: %s).', $name, implode(', ', $this->paths[$namespace]));
260 
261         if (!$throw) {
262             return false;
263         }
264 
265         throw new LoaderError($this->errorCache[$name]);
266     }
267 
268     protected function parseName($name, $default = self::MAIN_NAMESPACE)
269     {
270         if (isset($name[0]) && '@' == $name[0]) {
271             if (false === $pos = strpos($name, '/')) {
272                 throw new LoaderError(sprintf('Malformed namespaced template name "%s" (expecting "@namespace/template_name").', $name));
273             }
274 
275             $namespace = substr($name, 1, $pos - 1);
276             $shortname = substr($name, $pos + 1);
277 

Stack Trace

#0
+
 /home/rcedo7ia/public_html/esat/application/third_party/Twig/Loader/FilesystemLoader.php(161): Twig\Loader\FilesystemLoader->findTemplate("./subviews/header/progress_bar.twig")
156         return new Source(file_get_contents($path), $name, $path);
157     }
158 
159     public function getCacheKey($name)
160     {
161         if (null === ($path = $this->findTemplate($name)) || false === $path) {
162             return '';
163         }
164         $len = \strlen($this->rootPath);
165         if (0 === strncmp($this->rootPath, $path, $len)) {
166             return substr($path, $len);
#1
+
 /home/rcedo7ia/public_html/esat/application/third_party/Twig/Environment.php(351): Twig\Loader\FilesystemLoader->getCacheKey("./subviews/header/progress_bar.twig")
346      *
347      * @return string The template class name
348      */
349     public function getTemplateClass($name, $index = null)
350     {
351         $key = $this->getLoader()->getCacheKey($name).$this->optionsHash;
352 
353         return $this->templateClassPrefix.hash('sha256', $key).(null === $index ? '' : '___'.$index);
354     }
355 
356     /**
#2
+
 /home/rcedo7ia/public_html/esat/application/third_party/Twig/Environment.php(445): Twig\Environment->getTemplateClass("./subviews/header/progress_bar.twig")
440      *
441      * @internal
442      */
443     public function loadTemplate($name, $index = null)
444     {
445         return $this->loadClass($this->getTemplateClass($name), $name, $index);
446     }
447 
448     /**
449      * @internal
450      */
2024-03-29 14:18:17 LiteSpeed Yii Framework/1.1.22-dev