RouteNotFoundException Error

HTTP 500 Whoops, looks like something went wrong.

Undefined constant "JPATH_COMPONENT"

Exceptions 2

Error

  1.             return true;
  2.         }
  3.     
  4.         $mo = new MO();
  5.         $current_language JFactory::getLanguage();
  6.         $mo_file JPATH_COMPONENT DIRECTORY_SEPARATOR."language".DIRECTORY_SEPARATOR$domain ."-"$current_language->getTag() .".mo" ;
  7.         
  8.         
  9.         if(!file_exists($mo_file)){
  10.             $mo_file JPATH_COMPONENT DIRECTORY_SEPARATOR."language".DIRECTORY_SEPARATOR$domain ."-"str_replace("-""_"$current_language->getTag()) .".mo" ;
  11.             if(!file_exists($mo_file)){
  1.      * load language
  2.      */
  3.     public function __construct($domain){
  4.         
  5.         $this->domain $domain;
  6.         $this->get_translations_for_domain($domain);
  7.         
  8.     }
  9.     
  10.     
  11.     /*
  1.     
  2.     global $wpdb;
  3.     global $wpTranslate;
  4.         
  5.     $wpdb = new UniteDBRev();
  6.     $wpTranslate = new UniteTranslateRev("revslider");
  7.     
  8.     if(!defined("WP_CONTENT_DIR")){
  9.     
  10.         define("WP_CONTENT_DIR",JPATH_BASE."/images/");
  11.     }
require_once('/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/administrator/components/com_uniterevolution2/inc_php/framework/wpemulator.class.php') in /var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/administrator/components/com_uniterevolution2/includes.php (line 24)
  1. //include frameword files
  2. require_once $currentFolder '/inc_php/framework/include_framework.php';
  3. //include bases
  4. require_once $folderIncludes 'wpemulator.class.php';
  5. require_once $folderIncludes 'base.class.php';
  6. require_once $folderIncludes 'elements_base.class.php';
  7. require_once $folderIncludes 'base_admin.class.php';
  8. require_once $folderIncludes 'base_front.class.php';
require_once('/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/administrator/components/com_uniterevolution2/includes.php') in /var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/modules/mod_unite_revolution2/mod_unite_revolution2.php (line 16)
  1. // no direct access
  2. defined('_JEXEC') or die;
  3.     //include item files
  4.     $pathIncludes JPATH_ADMINISTRATOR."/components/com_uniterevolution2/includes.php";
  5.     require_once $pathIncludes;
  6.         
  7.     //set active menu link
  8.     $urlBase JURI::base();
  9.     
  10.     $sliderID $params->get("sliderid");
include('/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/modules/mod_unite_revolution2/mod_unite_revolution2.php') in /var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/src/Dispatcher/ModuleDispatcher.php (line 52)
  1.                 unset($displayData);
  2.             } else {
  3.                 extract($displayData);
  4.             }
  5.             include $path;
  6.         };
  7.         $loader($path$this->getLayoutData());
  8.     }
  9. }
ModuleDispatcher::Joomla\CMS\Dispatcher\{closure}('/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/modules/mod_unite_revolution2/mod_unite_revolution2.php', null) in /var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/src/Dispatcher/ModuleDispatcher.php (line 55)
  1.             }
  2.             include $path;
  3.         };
  4.         $loader($path$this->getLayoutData());
  5.     }
  6. }
  1.         $dispatcher $app->bootModule($module->module$app->getName())->getDispatcher($module$app);
  2.         // Check if we have a dispatcher
  3.         if ($dispatcher) {
  4.             ob_start();
  5.             $dispatcher->dispatch();
  6.             $module->content ob_get_clean();
  7.         }
  8.         // Add the flag that the module content has been rendered
  9.         $module->contentRendered true;
ModuleHelper::renderRawModule(object(stdClass), object(Registry), array('style' => 'gantry')) in /var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/src/Helper/ModuleHelper.php (line 161)
  1.         // Get module parameters
  2.         $params = new Registry($module->params);
  3.         // Render the module content
  4.         static::renderRawModule($module$params$attribs);
  5.         // Return early if only the content is required
  6.         if (!empty($attribs['contentOnly'])) {
  7.             return $module->content;
  8.         }
ModuleHelper::renderModule(object(stdClass), array('style' => 'gantry')) in /var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/src/Document/Renderer/Html/ModuleRenderer.php (line 99)
  1.             $module->contentRendered true;
  2.             return $module->content;
  3.         }
  4.         return ModuleHelper::renderModule($module$attribs);
  5.     }
  6. }
ModuleRenderer->render(object(stdClass), array('style' => 'gantry')) in /var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/gantry5/src/classes/Gantry/Framework/Platform.php (line 294)
  1.                 return '';
  2.             }
  3.             $renderer $document->loadRenderer('module');
  4.             $html trim($renderer->render($module$attribs));
  5.         } else {
  6.             $html trim($module->content);
  7.         }
  8.         // Add frontend editing feature as it has only been defined for module positions.
Platform->displayModule(object(stdClass), array('style' => 'gantry')) in /var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/gantry5/src/classes/Gantry/Framework/Platform.php (line 342)
  1.             return '';
  2.         }
  3.         $html '';
  4.         foreach (ModuleHelper::getModules($position) as $module) {
  5.             $html .= $this->displayModule($module$attribs);
  6.         }
  7.         return $html;
  8.     }
  1.         // to call is not supported. If ignoreStrictCheck is true, we should return null.
  2.         try {
  3.             if (!$arguments) {
  4.                 $ret $object->$method();
  5.             } else {
  6.                 $ret \call_user_func_array([$object$method], $arguments);
  7.             }
  8.         } catch (\BadMethodCallException $e) {
  9.             if ($call && ($ignoreStrictCheck || !$this->env->isStrictVariables())) {
  10.                 return;
  11.             }
Template->getAttribute(object(Platform), 'displayModules', array('slider', array('style' => 'gantry')), 'method') in /var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/cache/gantry5/g5_hydrogen/twig/6e/6e1ec8d44f5e425e01a281158b87a1f189ccefee356b44ad8e7b142af551cc8c.php (line 43)
  1.     // line 3
  2.     public function block_particle($context, array $blocks = [])
  3.     {
  4.         // line 4
  5.         echo "    ";
  6.         echo $this->getAttribute($this->getAttribute(($context["gantry"] ?? null), "platform", []), "displayModules", [=> $this->getAttribute(($context["particle"] ?? null), "key", []), => ["style" => (($this->getAttribute(($context["particle"] ?? null), "chrome", [], "any"truetrue)) ? (_twig_default_filter($this->getAttribute(($context["particle"] ?? null), "chrome", []), "gantry")) : ("gantry"))]], "method");
  7.         echo "
  8. ";
  9.     }
  10.     public function getTemplateName()
  1.             throw new \LogicException('A block must be a method on a \Twig\Template instance.');
  2.         }
  3.         if (null !== $template) {
  4.             try {
  5.                 $template->$block($context$blocks);
  6.             } catch (Error $e) {
  7.                 if (!$e->getSourceContext()) {
  8.                     $e->setSourceContext($template->getSourceContext());
  9.                 }
Template->displayBlock('particle', array('segment' => object(stdClass), 'enabled' => 1, 'particle' => array('enabled' => 1, 'key' => 'slider'), 'prepare_layout' => true, 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform), 'gantry' => object(Gantry)), array('stylesheets' => array(object(__TwigTemplate_5325f9e8a6308c003721e83f18e17e3137eb4b228dcdf5a3f1c9916182cc1125), 'block_stylesheets'), 'javascript' => array(object(__TwigTemplate_5325f9e8a6308c003721e83f18e17e3137eb4b228dcdf5a3f1c9916182cc1125), 'block_javascript'), 'javascript_footer' => array(object(__TwigTemplate_5325f9e8a6308c003721e83f18e17e3137eb4b228dcdf5a3f1c9916182cc1125), 'block_javascript_footer'), 'particle' => array(object(__TwigTemplate_a171fb48cf22906d09fa66f4b1d3ca6945293f478b49720cf76f4bde2f5f8a4b), 'block_particle'))) in /var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/cache/gantry5/g5_hydrogen/twig/86/868a08f1ba6ab78ea65046b77482e6ab9a656354ce39bd5c8c4ac8bd01691755.php (line 73)
  1.         echo "    ";
  2.         $this->displayBlock('javascript_footer'$context$blocks);
  3.         $content ob_get_clean();
  4.         $assetFunction($content$location$priority);
  5.         // line 14
  6.         $this->displayBlock('particle'$context$blocks);
  7.     }
  8.     // line 2
  9.     public function block_stylesheets($context, array $blocks = [])
  10.     {
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
Template->display(array('segment' => object(stdClass), 'enabled' => 1, 'particle' => array('enabled' => 1, 'key' => 'slider'), 'prepare_layout' => true, 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform), 'gantry' => object(Gantry)), array('particle' => array(object(__TwigTemplate_a171fb48cf22906d09fa66f4b1d3ca6945293f478b49720cf76f4bde2f5f8a4b), 'block_particle'))) in /var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/cache/gantry5/g5_hydrogen/twig/6e/6e1ec8d44f5e425e01a281158b87a1f189ccefee356b44ad8e7b142af551cc8c.php (line 35)
  1.     }
  2.     protected function doDisplay(array $context, array $blocks = [])
  3.     {
  4.         $this->parent $this->loadTemplate("@nucleus/partials/particle.html.twig""@particles/position.html.twig"1);
  5.         $this->parent->display($contextarray_merge($this->blocks$blocks));
  6.     }
  7.     // line 3
  8.     public function block_particle($context, array $blocks = [])
  9.     {
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
Template->display(array('segment' => object(stdClass), 'enabled' => 1, 'particle' => array('enabled' => 1, 'key' => 'slider'), 'prepare_layout' => true, 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform), 'gantry' => object(Gantry))) in /var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/cache/gantry5/g5_hydrogen/twig/99/99926549a28d8bfebd842f14e5a0609eea0cd205fe66582ca7baa40967bd5d8d.php (line 53)
  1.             echo "        ";
  2.             if ((($context["enabled"] ?? null) && ((null === $this->getAttribute($this->getAttribute(($context["segment"] ?? null), "attributes", []), "enabled", [])) || $this->getAttribute($this->getAttribute(($context["segment"] ?? null), "attributes", []), "enabled", [])))) {
  3.                 // line 9
  4.                 echo "            ";
  5.                 $this->loadTemplate([=> (("particles/" . (($this->getAttribute(($context["segment"] ?? null), "subtype", [], "any"truetrue)) ? (_twig_default_filter($this->getAttribute(($context["segment"] ?? null), "subtype", []), "position")) : ("position"))) . ".html.twig"), => (("@particles/" . (($this->getAttribute(                // line 10
  6. ($context["segment"] ?? null), "subtype", [], "any"truetrue)) ? (_twig_default_filter($this->getAttribute(($context["segment"] ?? null), "subtype", []), "position")) : ("position"))) . ".html.twig")], "@nucleus/content/position.html.twig"9)->display($context);
  7.                 // line 11
  8.                 echo "        ";
  9.             }
  10.             // line 12
  11.             echo "    ";
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
  1.             ob_start();
  2.         } else {
  3.             ob_start(function () { return ''; });
  4.         }
  5.         try {
  6.             $this->display($context);
  7.         } catch (\Exception $e) {
  8.             while (ob_get_level() > $level) {
  9.                 ob_end_clean();
  10.             }
  1.      */
  2.     public function render($context = [])
  3.     {
  4.         // using func_get_args() allows to not expose the blocks argument
  5.         // as it should only be used by internal code
  6.         return $this->template->render($context\func_num_args() > func_get_arg(1) : []);
  7.     }
  8.     /**
  9.      * Displays the template.
  10.      *
  1.      * @throws SyntaxError  When an error occurred during compilation
  2.      * @throws RuntimeError When an error occurred during rendering
  3.      */
  4.     public function render($name, array $context = [])
  5.     {
  6.         return $this->load($name)->render($context);
  7.     }
  8.     /**
  9.      * Displays a template.
  10.      *
Environment->render('@nucleus/content/position.html.twig', array('segment' => object(stdClass), 'enabled' => 1, 'particle' => array('enabled' => 1, 'key' => 'slider'), 'prepare_layout' => true, 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform))) in /var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/gantry5/src/classes/Gantry/Component/Theme/AbstractTheme.php (line 176)
  1.     public function render($file, array $context = [])
  2.     {
  3.         // Include Gantry specific things to the context.
  4.         $context $this->getContext($context);
  5.         return $this->renderer()->render($file$context);
  6.     }
  7.     /**
  8.      * Compile and render twig string.
  9.      *
AbstractTheme->render('@nucleus/content/position.html.twig', array('segment' => object(stdClass), 'enabled' => 1, 'particle' => array('enabled' => 1, 'key' => 'slider'), 'prepare_layout' => true, 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform))) in /var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/gantry5/src/classes/Gantry/Component/Theme/ThemeTrait.php (line 825)
  1.         $context $this->getContext(['segment' => $item'enabled' => 1'particle' => $particle] + $options);
  2.         /** @var Document $document */
  3.         $document $gantry['document'];
  4.         $document::push();
  5.         $html trim($this->render("@nucleus/content/{$item->type}.html.twig"$context));
  6.         $content $document::pop()->setContent($html);
  7.         if (isset($file)) {
  8.             // Save HTML and assets into the cache.
  9.             if (\GANTRY_DEBUGGER) {
  1.      */
  2.     public function renderContent($item$options = [])
  3.     {
  4.         $gantry = static::gantry();
  5.         $content $this->getContent($item$options);
  6.         /** @var Document $document */
  7.         $document $gantry['document'];
  8.         $document->addBlock($content);
Theme->renderContent(object(stdClass), array('prepare_layout' => true)) in /var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/gantry5/src/classes/Gantry/Component/Theme/ThemeTrait.php (line 643)
  1.                 case 'spacer':
  2.                     if (\GANTRY_DEBUGGER) {
  3.                         Debugger::startTimer($item->id"Rendering {$item->id}");
  4.                     }
  5.                     $item->content $this->renderContent($item, ['prepare_layout' => true]);
  6.                     // Note that content can also be null (postpone rendering).
  7.                     if ($item->content === '') {
  8.                         unset($items[$i]);
  9.                     }
  1.                 $fixed true;
  2.                 foreach ($item->children as $child) {
  3.                     $fixed &= !empty($child->attributes->fixed);
  4.                 }
  5.                 $this->prepareLayout($item->children$fixed$temporary);
  6.             }
  7.             // TODO: remove hard coded types.
  8.             switch ($item->type) {
  9.                 case 'system':
  1.                 $fixed true;
  2.                 foreach ($item->children as $child) {
  3.                     $fixed &= !empty($child->attributes->fixed);
  4.                 }
  5.                 $this->prepareLayout($item->children$fixed$temporary);
  6.             }
  7.             // TODO: remove hard coded types.
  8.             switch ($item->type) {
  9.                 case 'system':
Theme->prepareLayout(array(object(stdClass), object(stdClass)), 0, false) in /var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/gantry5/src/classes/Gantry/Component/Theme/ThemeTrait.php (line 627)
  1.                 $fixed true;
  2.                 foreach ($item->children as $child) {
  3.                     $fixed &= !empty($child->attributes->fixed);
  4.                 }
  5.                 $this->prepareLayout($item->children$fixed$temporary);
  6.             }
  7.             // TODO: remove hard coded types.
  8.             switch ($item->type) {
  9.                 case 'system':
Theme->prepareLayout(array(object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(stdClass))) in /var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/gantry5/src/classes/Gantry/Component/Theme/ThemeTrait.php (line 468)
  1.             if (\GANTRY_DEBUGGER) {
  2.                 Debugger::startTimer('segments''Preparing layout');
  3.             }
  4.             $this->prepareLayout($this->segments);
  5.             if (\GANTRY_DEBUGGER) {
  6.                 Debugger::stopTimer('segments');
  7.             }
  8.         }
  1.         // Some objects throw exceptions when they have __call, and the method we try
  2.         // to call is not supported. If ignoreStrictCheck is true, we should return null.
  3.         try {
  4.             if (!$arguments) {
  5.                 $ret $object->$method();
  6.             } else {
  7.                 $ret \call_user_func_array([$object$method], $arguments);
  8.             }
  9.         } catch (\BadMethodCallException $e) {
  10.             if ($call && ($ignoreStrictCheck || !$this->env->isStrictVariables())) {
  1.         // line 2
  2.         $this->getAttribute($this->getAttribute(($context["gantry"] ?? null), "theme", []), "setLayout", [], "method");
  3.         // line 3
  4.         $this->getAttribute($this->getAttribute(($context["gantry"] ?? null), "theme", []), "loadAtoms", [], "method");
  5.         // line 4
  6.         $context["segments"] = $this->getAttribute($this->getAttribute(($context["gantry"] ?? null), "theme", []), "segments", [], "method");
  7.         // line 6
  8.         ob_start(function () { return ''; });
  9.         // line 7
  10.         echo "    ";
  11.         if ($this->getAttribute($this->getAttribute(($context["gantry"] ?? null), "theme", []), "hasContent", [], "method")) {
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
Template->display(array('errorcode' => 404, 'error' => 'Seite nicht gefunden', 'debug' => false, 'backtrace' => null, 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform), 'gantry' => object(Gantry)), array('page_footer' => array(object(__TwigTemplate_79fb545c5f9cacdf5305b293d3c5073a3cc969f1e557ae2093fb9fbc9fa59ee6), 'block_page_footer'), 'page_head' => array(object(__TwigTemplate_65a9fac7216aa48f00bc1d919e1aa41d99e3adf96bd49e230dcde078fd470c3e), 'block_page_head'), 'content' => array(object(__TwigTemplate_65a9fac7216aa48f00bc1d919e1aa41d99e3adf96bd49e230dcde078fd470c3e), 'block_content'))) in /var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/cache/gantry5/g5_hydrogen/twig/98/984ffd473a9dad9725966609c1cd9d1ffbddfa9b80c7c7c21efed5c9ab59ca7e.php (line 35)
  1.     }
  2.     protected function doDisplay(array $context, array $blocks = [])
  3.     {
  4.         $this->parent $this->loadTemplate("@nucleus/page.html.twig""partials/page.html.twig"1);
  5.         $this->parent->display($contextarray_merge($this->blocks$blocks));
  6.     }
  7.     // line 3
  8.     public function block_page_footer($context, array $blocks = [])
  9.     {
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
Template->display(array('errorcode' => 404, 'error' => 'Seite nicht gefunden', 'debug' => false, 'backtrace' => null, 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform), 'gantry' => object(Gantry)), array('page_head' => array(object(__TwigTemplate_65a9fac7216aa48f00bc1d919e1aa41d99e3adf96bd49e230dcde078fd470c3e), 'block_page_head'), 'content' => array(object(__TwigTemplate_65a9fac7216aa48f00bc1d919e1aa41d99e3adf96bd49e230dcde078fd470c3e), 'block_content'))) in /var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/cache/gantry5/g5_hydrogen/twig/79/79fd8759f3f9ca74770839c46305477a4f8ae3d18bf3dd40c7df256062f4ea0d.php (line 36)
  1.     }
  2.     protected function doDisplay(array $context, array $blocks = [])
  3.     {
  4.         $this->parent $this->loadTemplate("partials/page.html.twig""error.html.twig"1);
  5.         $this->parent->display($contextarray_merge($this->blocks$blocks));
  6.     }
  7.     // line 3
  8.     public function block_page_head($context, array $blocks = [])
  9.     {
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
  1.             ob_start();
  2.         } else {
  3.             ob_start(function () { return ''; });
  4.         }
  5.         try {
  6.             $this->display($context);
  7.         } catch (\Exception $e) {
  8.             while (ob_get_level() > $level) {
  9.                 ob_end_clean();
  10.             }
  1.      */
  2.     public function render($context = [])
  3.     {
  4.         // using func_get_args() allows to not expose the blocks argument
  5.         // as it should only be used by internal code
  6.         return $this->template->render($context\func_num_args() > func_get_arg(1) : []);
  7.     }
  8.     /**
  9.      * Displays the template.
  10.      *
  1.      * @throws SyntaxError  When an error occurred during compilation
  2.      * @throws RuntimeError When an error occurred during rendering
  3.      */
  4.     public function render($name, array $context = [])
  5.     {
  6.         return $this->load($name)->render($context);
  7.     }
  8.     /**
  9.      * Displays a template.
  10.      *
Environment->render('error.html.twig', array('errorcode' => 404, 'error' => 'Seite nicht gefunden', 'debug' => false, 'backtrace' => null, 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform))) in /var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/gantry5/src/classes/Gantry/Component/Theme/AbstractTheme.php (line 176)
  1.     public function render($file, array $context = [])
  2.     {
  3.         // Include Gantry specific things to the context.
  4.         $context $this->getContext($context);
  5.         return $this->renderer()->render($file$context);
  6.     }
  7.     /**
  8.      * Compile and render twig string.
  9.      *
AbstractTheme->render('error.html.twig', array('errorcode' => 404, 'error' => 'Seite nicht gefunden', 'debug' => false, 'backtrace' => null, 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform))) in /var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/templates/g5_hydrogen/error.php (line 46)
  1. unset($gantry['configuration']);
  2. // Render the page.
  3. echo $theme
  4.     ->setLayout('_error'true)
  5.     ->render('error.html.twig'$context);
require('/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/templates/g5_hydrogen/error.php') in /var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/src/Document/HtmlDocument.php (line 721)
  1.             // Store the file path
  2.             $this->_file $directory '/' $filename;
  3.             // Get the file content
  4.             ob_start();
  5.             require $directory '/' $filename;
  6.             $contents ob_get_contents();
  7.             ob_end_clean();
  8.         }
  9.         return $contents;
HtmlDocument->_loadTemplate('/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/templates/g5_hydrogen', 'error.php') in /var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/src/Document/HtmlDocument.php (line 776)
  1.         $this->baseurl  Uri::base(true);
  2.         $this->params   $params['params'] ?? new Registry();
  3.         $this->template $template;
  4.         // Load
  5.         $this->_template $this->_loadTemplate($baseDir$file);
  6.         return $this;
  7.     }
  8.     /**
HtmlDocument->_fetchTemplate(array('template' => 'g5_hydrogen', 'directory' => '/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/templates', 'debug' => false, 'csp_nonce' => null, 'templateInherits' => '', 'params' => object(Registry), 'file' => 'error.php')) in /var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/src/Document/HtmlDocument.php (line 612)
  1.      *
  2.      * @since   1.7.0
  3.      */
  4.     public function parse($params = [])
  5.     {
  6.         return $this->_fetchTemplate($params)->_parseTemplate();
  7.     }
  8.     /**
  9.      * Outputs the template to the browser.
  10.      *
HtmlDocument->parse(array('template' => 'g5_hydrogen', 'directory' => '/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/templates', 'debug' => false, 'csp_nonce' => null, 'templateInherits' => '', 'params' => object(Registry), 'file' => 'error.php')) in /var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/src/Document/HtmlDocument.php (line 630)
  1.     public function render($caching false$params = [])
  2.     {
  3.         $this->_caching $caching;
  4.         if (empty($this->_template)) {
  5.             $this->parse($params);
  6.         }
  7.         if (\array_key_exists('csp_nonce'$params) && $params['csp_nonce'] !== null) {
  8.             $this->cspNonce $params['csp_nonce'];
  9.         }
HtmlDocument->render(false, array('template' => 'g5_hydrogen', 'directory' => '/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/templates', 'debug' => false, 'csp_nonce' => null, 'templateInherits' => '', 'params' => object(Registry), 'file' => 'error.php')) in /var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/src/Document/ErrorDocument.php (line 139)
  1.         $this->debug $params['debug'] ?? false;
  2.         $this->error $this->_error;
  3.         $params['file'] = 'error.php';
  4.         return parent::render($cache$params);
  5.     }
  6.     /**
  7.      * Render the backtrace
  8.      *
ErrorDocument->render(false, array('template' => 'g5_hydrogen', 'directory' => '/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/templates', 'debug' => false, 'csp_nonce' => null, 'templateInherits' => '', 'params' => object(Registry), 'file' => 'error.php')) in /var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/src/Error/Renderer/HtmlRenderer.php (line 78)
  1.                 'template'         => $template->template,
  2.                 'directory'        => JPATH_THEMES,
  3.                 'debug'            => JDEBUG,
  4.                 'csp_nonce'        => $app->get('csp_nonce'),
  5.                 'templateInherits' => $template->parent,
  6.                 'params'           => $template->params,
  7.             ]
  8.         );
  9.     }
  10. }
  1.             // Reset the document object in the factory, this gives us a clean slate and lets everything render properly
  2.             Factory::$document $renderer->getDocument();
  3.             Factory::getApplication()->loadDocument(Factory::$document);
  4.             $data $renderer->render($error);
  5.             // If nothing was rendered, just use the message from the Exception
  6.             if (empty($data)) {
  7.                 $data $error->getMessage();
  8.             }
  1.      * @since   3.10.0
  2.      */
  3.     public static function handleException(\Throwable $error)
  4.     {
  5.         static::logException($error);
  6.         static::render($error);
  7.     }
  8.     /**
  9.      * Render the error page based on an exception.
  10.      *
ExceptionHandler::handleException(object(RouteNotFoundException)) in /var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/src/Application/CMSApplication.php (line 322)
  1.             );
  2.             // Trigger the onError event.
  3.             $this->triggerEvent('onError'$event);
  4.             ExceptionHandler::handleException($event->getError());
  5.         }
  6.         // Trigger the onBeforeRespond event.
  7.         $this->getDispatcher()->dispatch('onBeforeRespond');
  1. // Set the application as global app
  2. \Joomla\CMS\Factory::$application $app;
  3. // Execute the application.
  4. $app->execute();
require_once('/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/includes/app.php') in /var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/index.php (line 32)
  1.  * define() is used rather than "const" to not error for PHP 5.2 and lower
  2.  */
  3. define('_JEXEC'1);
  4. // Run the application - All executable code should be triggered through this file
  5. require_once dirname(__FILE__) . '/includes/app.php';

Joomla\CMS\Router\Exception\ RouteNotFoundException

Seite nicht gefunden

  1.         $this->processParseRules($uriself::PROCESS_AFTER);
  2.         // Check if all parts of the URL have been parsed.
  3.         // Otherwise we have an invalid URL
  4.         if (\strlen($uri->getPath()) > 0) {
  5.             throw new RouteNotFoundException(Text::_('JERROR_PAGE_NOT_FOUND'));
  6.         }
  7.         if ($setVars) {
  8.             $this->setVars($uri->getQuery(true));
  1.         // Get the full request URI.
  2.         $uri = clone Uri::getInstance();
  3.         // It is not possible to inject the SiteRouter as it requires a SiteApplication
  4.         // and we would end in an infinite loop
  5.         $result $this->getContainer()->get(SiteRouter::class)->parse($uritrue);
  6.         $active $this->getMenu()->getActive();
  7.         if (
  8.             $active !== null
  1.         // Mark afterInitialise in the profiler.
  2.         JDEBUG $this->profiler->mark('afterInitialise') : null;
  3.         // Route the application
  4.         $this->route();
  5.         // Mark afterRoute in the profiler.
  6.         JDEBUG $this->profiler->mark('afterRoute') : null;
  7.         if (!$this->isHandlingMultiFactorAuthentication()) {
  1.             $this->sanityCheckSystemVariables();
  2.             $this->setupLogging();
  3.             $this->createExtensionNamespaceMap();
  4.             // Perform application routines.
  5.             $this->doExecute();
  6.             // If we have an application document object, render it.
  7.             if ($this->document instanceof \Joomla\CMS\Document\Document) {
  8.                 // Render the application output.
  9.                 $this->render();
  1. // Set the application as global app
  2. \Joomla\CMS\Factory::$application $app;
  3. // Execute the application.
  4. $app->execute();
require_once('/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/includes/app.php') in /var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/index.php (line 32)
  1.  * define() is used rather than "const" to not error for PHP 5.2 and lower
  2.  */
  3. define('_JEXEC'1);
  4. // Run the application - All executable code should be triggered through this file
  5. require_once dirname(__FILE__) . '/includes/app.php';

Stack Traces 2

[2/2] Error
Error:
Undefined constant "JPATH_COMPONENT"

  at /var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/administrator/components/com_uniterevolution2/inc_php/framework/translate.class.php:32
  at UniteTranslateRev->get_translations_for_domain('revslider')
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/administrator/components/com_uniterevolution2/inc_php/framework/translate.class.php:15)
  at UniteTranslateRev->__construct('revslider')
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/administrator/components/com_uniterevolution2/inc_php/framework/wpemulator.class.php:7)
  at require_once('/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/administrator/components/com_uniterevolution2/inc_php/framework/wpemulator.class.php')
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/administrator/components/com_uniterevolution2/includes.php:24)
  at require_once('/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/administrator/components/com_uniterevolution2/includes.php')
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/modules/mod_unite_revolution2/mod_unite_revolution2.php:16)
  at include('/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/modules/mod_unite_revolution2/mod_unite_revolution2.php')
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/src/Dispatcher/ModuleDispatcher.php:52)
  at Joomla\CMS\Dispatcher\ModuleDispatcher::Joomla\CMS\Dispatcher\{closure}('/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/modules/mod_unite_revolution2/mod_unite_revolution2.php', null)
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/src/Dispatcher/ModuleDispatcher.php:55)
  at Joomla\CMS\Dispatcher\ModuleDispatcher->dispatch()
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/src/Helper/ModuleHelper.php:281)
  at Joomla\CMS\Helper\ModuleHelper::renderRawModule(object(stdClass), object(Registry), array('style' => 'gantry'))
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/src/Helper/ModuleHelper.php:161)
  at Joomla\CMS\Helper\ModuleHelper::renderModule(object(stdClass), array('style' => 'gantry'))
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/src/Document/Renderer/Html/ModuleRenderer.php:99)
  at Joomla\CMS\Document\Renderer\Html\ModuleRenderer->render(object(stdClass), array('style' => 'gantry'))
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/gantry5/src/classes/Gantry/Framework/Platform.php:294)
  at Gantry\Framework\Platform->displayModule(object(stdClass), array('style' => 'gantry'))
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/gantry5/src/classes/Gantry/Framework/Platform.php:342)
  at Gantry\Framework\Platform->displayModules('slider', array('style' => 'gantry'))
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:702)
  at Twig\Template->getAttribute(object(Platform), 'displayModules', array('slider', array('style' => 'gantry')), 'method')
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/cache/gantry5/g5_hydrogen/twig/6e/6e1ec8d44f5e425e01a281158b87a1f189ccefee356b44ad8e7b142af551cc8c.php:43)
  at __TwigTemplate_a171fb48cf22906d09fa66f4b1d3ca6945293f478b49720cf76f4bde2f5f8a4b->block_particle(array('segment' => object(stdClass), 'enabled' => 1, 'particle' => array('enabled' => 1, 'key' => 'slider'), 'prepare_layout' => true, 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform), 'gantry' => object(Gantry)), array('stylesheets' => array(object(__TwigTemplate_5325f9e8a6308c003721e83f18e17e3137eb4b228dcdf5a3f1c9916182cc1125), 'block_stylesheets'), 'javascript' => array(object(__TwigTemplate_5325f9e8a6308c003721e83f18e17e3137eb4b228dcdf5a3f1c9916182cc1125), 'block_javascript'), 'javascript_footer' => array(object(__TwigTemplate_5325f9e8a6308c003721e83f18e17e3137eb4b228dcdf5a3f1c9916182cc1125), 'block_javascript_footer'), 'particle' => array(object(__TwigTemplate_a171fb48cf22906d09fa66f4b1d3ca6945293f478b49720cf76f4bde2f5f8a4b), 'block_particle')))
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:214)
  at Twig\Template->displayBlock('particle', array('segment' => object(stdClass), 'enabled' => 1, 'particle' => array('enabled' => 1, 'key' => 'slider'), 'prepare_layout' => true, 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform), 'gantry' => object(Gantry)), array('stylesheets' => array(object(__TwigTemplate_5325f9e8a6308c003721e83f18e17e3137eb4b228dcdf5a3f1c9916182cc1125), 'block_stylesheets'), 'javascript' => array(object(__TwigTemplate_5325f9e8a6308c003721e83f18e17e3137eb4b228dcdf5a3f1c9916182cc1125), 'block_javascript'), 'javascript_footer' => array(object(__TwigTemplate_5325f9e8a6308c003721e83f18e17e3137eb4b228dcdf5a3f1c9916182cc1125), 'block_javascript_footer'), 'particle' => array(object(__TwigTemplate_a171fb48cf22906d09fa66f4b1d3ca6945293f478b49720cf76f4bde2f5f8a4b), 'block_particle')))
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/cache/gantry5/g5_hydrogen/twig/86/868a08f1ba6ab78ea65046b77482e6ab9a656354ce39bd5c8c4ac8bd01691755.php:73)
  at __TwigTemplate_5325f9e8a6308c003721e83f18e17e3137eb4b228dcdf5a3f1c9916182cc1125->doDisplay(array('segment' => object(stdClass), 'enabled' => 1, 'particle' => array('enabled' => 1, 'key' => 'slider'), 'prepare_layout' => true, 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform), 'gantry' => object(Gantry)), array('stylesheets' => array(object(__TwigTemplate_5325f9e8a6308c003721e83f18e17e3137eb4b228dcdf5a3f1c9916182cc1125), 'block_stylesheets'), 'javascript' => array(object(__TwigTemplate_5325f9e8a6308c003721e83f18e17e3137eb4b228dcdf5a3f1c9916182cc1125), 'block_javascript'), 'javascript_footer' => array(object(__TwigTemplate_5325f9e8a6308c003721e83f18e17e3137eb4b228dcdf5a3f1c9916182cc1125), 'block_javascript_footer'), 'particle' => array(object(__TwigTemplate_a171fb48cf22906d09fa66f4b1d3ca6945293f478b49720cf76f4bde2f5f8a4b), 'block_particle')))
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:453)
  at Twig\Template->displayWithErrorHandling(array('segment' => object(stdClass), 'enabled' => 1, 'particle' => array('enabled' => 1, 'key' => 'slider'), 'prepare_layout' => true, 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform), 'gantry' => object(Gantry)), array('stylesheets' => array(object(__TwigTemplate_5325f9e8a6308c003721e83f18e17e3137eb4b228dcdf5a3f1c9916182cc1125), 'block_stylesheets'), 'javascript' => array(object(__TwigTemplate_5325f9e8a6308c003721e83f18e17e3137eb4b228dcdf5a3f1c9916182cc1125), 'block_javascript'), 'javascript_footer' => array(object(__TwigTemplate_5325f9e8a6308c003721e83f18e17e3137eb4b228dcdf5a3f1c9916182cc1125), 'block_javascript_footer'), 'particle' => array(object(__TwigTemplate_a171fb48cf22906d09fa66f4b1d3ca6945293f478b49720cf76f4bde2f5f8a4b), 'block_particle')))
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:420)
  at Twig\Template->display(array('segment' => object(stdClass), 'enabled' => 1, 'particle' => array('enabled' => 1, 'key' => 'slider'), 'prepare_layout' => true, 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform), 'gantry' => object(Gantry)), array('particle' => array(object(__TwigTemplate_a171fb48cf22906d09fa66f4b1d3ca6945293f478b49720cf76f4bde2f5f8a4b), 'block_particle')))
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/cache/gantry5/g5_hydrogen/twig/6e/6e1ec8d44f5e425e01a281158b87a1f189ccefee356b44ad8e7b142af551cc8c.php:35)
  at __TwigTemplate_a171fb48cf22906d09fa66f4b1d3ca6945293f478b49720cf76f4bde2f5f8a4b->doDisplay(array('segment' => object(stdClass), 'enabled' => 1, 'particle' => array('enabled' => 1, 'key' => 'slider'), 'prepare_layout' => true, 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform), 'gantry' => object(Gantry)), array('particle' => array(object(__TwigTemplate_a171fb48cf22906d09fa66f4b1d3ca6945293f478b49720cf76f4bde2f5f8a4b), 'block_particle')))
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:453)
  at Twig\Template->displayWithErrorHandling(array('segment' => object(stdClass), 'enabled' => 1, 'particle' => array('enabled' => 1, 'key' => 'slider'), 'prepare_layout' => true, 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform), 'gantry' => object(Gantry)), array('particle' => array(object(__TwigTemplate_a171fb48cf22906d09fa66f4b1d3ca6945293f478b49720cf76f4bde2f5f8a4b), 'block_particle')))
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:420)
  at Twig\Template->display(array('segment' => object(stdClass), 'enabled' => 1, 'particle' => array('enabled' => 1, 'key' => 'slider'), 'prepare_layout' => true, 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform), 'gantry' => object(Gantry)))
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/cache/gantry5/g5_hydrogen/twig/99/99926549a28d8bfebd842f14e5a0609eea0cd205fe66582ca7baa40967bd5d8d.php:53)
  at __TwigTemplate_d8f3a01587c4bf1efa111d178f7fd3873c5be244eb8a8c83148d5b578d2ca2f8->doDisplay(array('segment' => object(stdClass), 'enabled' => 1, 'particle' => array('enabled' => 1, 'key' => 'slider'), 'prepare_layout' => true, 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform), 'gantry' => object(Gantry)), array())
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:453)
  at Twig\Template->displayWithErrorHandling(array('segment' => object(stdClass), 'enabled' => 1, 'particle' => array('enabled' => 1, 'key' => 'slider'), 'prepare_layout' => true, 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform), 'gantry' => object(Gantry)), array())
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:420)
  at Twig\Template->display(array('segment' => object(stdClass), 'enabled' => 1, 'particle' => array('enabled' => 1, 'key' => 'slider'), 'prepare_layout' => true, 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform)))
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:432)
  at Twig\Template->render(array('segment' => object(stdClass), 'enabled' => 1, 'particle' => array('enabled' => 1, 'key' => 'slider'), 'prepare_layout' => true, 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform)), array())
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/gantry5/compat/vendor/twig/twig/src/TemplateWrapper.php:47)
  at Twig\TemplateWrapper->render(array('segment' => object(stdClass), 'enabled' => 1, 'particle' => array('enabled' => 1, 'key' => 'slider'), 'prepare_layout' => true, 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform)))
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/gantry5/compat/vendor/twig/twig/src/Environment.php:384)
  at Twig\Environment->render('@nucleus/content/position.html.twig', array('segment' => object(stdClass), 'enabled' => 1, 'particle' => array('enabled' => 1, 'key' => 'slider'), 'prepare_layout' => true, 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform)))
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/gantry5/src/classes/Gantry/Component/Theme/AbstractTheme.php:176)
  at Gantry\Component\Theme\AbstractTheme->render('@nucleus/content/position.html.twig', array('segment' => object(stdClass), 'enabled' => 1, 'particle' => array('enabled' => 1, 'key' => 'slider'), 'prepare_layout' => true, 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform)))
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/gantry5/src/classes/Gantry/Component/Theme/ThemeTrait.php:825)
  at Gantry\Framework\Theme->getContent(object(stdClass), array('prepare_layout' => true))
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/gantry5/src/classes/Gantry/Component/Theme/ThemeTrait.php:718)
  at Gantry\Framework\Theme->renderContent(object(stdClass), array('prepare_layout' => true))
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/gantry5/src/classes/Gantry/Component/Theme/ThemeTrait.php:643)
  at Gantry\Framework\Theme->prepareLayout(array(object(stdClass)), 0, 0)
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/gantry5/src/classes/Gantry/Component/Theme/ThemeTrait.php:627)
  at Gantry\Framework\Theme->prepareLayout(array(object(stdClass)), 0, 0)
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/gantry5/src/classes/Gantry/Component/Theme/ThemeTrait.php:627)
  at Gantry\Framework\Theme->prepareLayout(array(object(stdClass), object(stdClass)), 0, false)
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/gantry5/src/classes/Gantry/Component/Theme/ThemeTrait.php:627)
  at Gantry\Framework\Theme->prepareLayout(array(object(stdClass), object(stdClass), object(stdClass), object(stdClass), object(stdClass)))
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/gantry5/src/classes/Gantry/Component/Theme/ThemeTrait.php:468)
  at Gantry\Framework\Theme->segments()
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:700)
  at Twig\Template->getAttribute(object(GantryTheme), 'segments', array(), 'method')
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/cache/gantry5/g5_hydrogen/twig/a8/a8db29e5fe41412946024c3453eb5971b470880e5b3a5f207f55b7542f78ce4b.php:47)
  at __TwigTemplate_84591cb8e49bc57cca27a12ed8ed0b8c985b1c4bd33f8cfe748eda593153f030->doDisplay(array('errorcode' => 404, 'error' => 'Seite nicht gefunden', 'debug' => false, 'backtrace' => null, 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform), 'gantry' => object(Gantry)), array('content' => array(object(__TwigTemplate_65a9fac7216aa48f00bc1d919e1aa41d99e3adf96bd49e230dcde078fd470c3e), 'block_content'), 'page_offcanvas' => array(object(__TwigTemplate_84591cb8e49bc57cca27a12ed8ed0b8c985b1c4bd33f8cfe748eda593153f030), 'block_page_offcanvas'), 'page_layout' => array(object(__TwigTemplate_84591cb8e49bc57cca27a12ed8ed0b8c985b1c4bd33f8cfe748eda593153f030), 'block_page_layout'), 'page_top' => array(object(__TwigTemplate_84591cb8e49bc57cca27a12ed8ed0b8c985b1c4bd33f8cfe748eda593153f030), 'block_page_top'), 'page_bottom' => array(object(__TwigTemplate_84591cb8e49bc57cca27a12ed8ed0b8c985b1c4bd33f8cfe748eda593153f030), 'block_page_bottom'), 'body_top' => array(object(__TwigTemplate_84591cb8e49bc57cca27a12ed8ed0b8c985b1c4bd33f8cfe748eda593153f030), 'block_body_top'), 'body_bottom' => array(object(__TwigTemplate_84591cb8e49bc57cca27a12ed8ed0b8c985b1c4bd33f8cfe748eda593153f030), 'block_body_bottom'), 'page_head' => array(object(__TwigTemplate_65a9fac7216aa48f00bc1d919e1aa41d99e3adf96bd49e230dcde078fd470c3e), 'block_page_head'), 'page_footer' => array(object(__TwigTemplate_79fb545c5f9cacdf5305b293d3c5073a3cc969f1e557ae2093fb9fbc9fa59ee6), 'block_page_footer'), 'page' => array(object(__TwigTemplate_84591cb8e49bc57cca27a12ed8ed0b8c985b1c4bd33f8cfe748eda593153f030), 'block_page'), 'page_body' => array(object(__TwigTemplate_84591cb8e49bc57cca27a12ed8ed0b8c985b1c4bd33f8cfe748eda593153f030), 'block_page_body')))
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:453)
  at Twig\Template->displayWithErrorHandling(array('errorcode' => 404, 'error' => 'Seite nicht gefunden', 'debug' => false, 'backtrace' => null, 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform), 'gantry' => object(Gantry)), array('content' => array(object(__TwigTemplate_65a9fac7216aa48f00bc1d919e1aa41d99e3adf96bd49e230dcde078fd470c3e), 'block_content'), 'page_offcanvas' => array(object(__TwigTemplate_84591cb8e49bc57cca27a12ed8ed0b8c985b1c4bd33f8cfe748eda593153f030), 'block_page_offcanvas'), 'page_layout' => array(object(__TwigTemplate_84591cb8e49bc57cca27a12ed8ed0b8c985b1c4bd33f8cfe748eda593153f030), 'block_page_layout'), 'page_top' => array(object(__TwigTemplate_84591cb8e49bc57cca27a12ed8ed0b8c985b1c4bd33f8cfe748eda593153f030), 'block_page_top'), 'page_bottom' => array(object(__TwigTemplate_84591cb8e49bc57cca27a12ed8ed0b8c985b1c4bd33f8cfe748eda593153f030), 'block_page_bottom'), 'body_top' => array(object(__TwigTemplate_84591cb8e49bc57cca27a12ed8ed0b8c985b1c4bd33f8cfe748eda593153f030), 'block_body_top'), 'body_bottom' => array(object(__TwigTemplate_84591cb8e49bc57cca27a12ed8ed0b8c985b1c4bd33f8cfe748eda593153f030), 'block_body_bottom'), 'page_head' => array(object(__TwigTemplate_65a9fac7216aa48f00bc1d919e1aa41d99e3adf96bd49e230dcde078fd470c3e), 'block_page_head'), 'page_footer' => array(object(__TwigTemplate_79fb545c5f9cacdf5305b293d3c5073a3cc969f1e557ae2093fb9fbc9fa59ee6), 'block_page_footer'), 'page' => array(object(__TwigTemplate_84591cb8e49bc57cca27a12ed8ed0b8c985b1c4bd33f8cfe748eda593153f030), 'block_page'), 'page_body' => array(object(__TwigTemplate_84591cb8e49bc57cca27a12ed8ed0b8c985b1c4bd33f8cfe748eda593153f030), 'block_page_body')))
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:420)
  at Twig\Template->display(array('errorcode' => 404, 'error' => 'Seite nicht gefunden', 'debug' => false, 'backtrace' => null, 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform), 'gantry' => object(Gantry)), array('page_footer' => array(object(__TwigTemplate_79fb545c5f9cacdf5305b293d3c5073a3cc969f1e557ae2093fb9fbc9fa59ee6), 'block_page_footer'), 'page_head' => array(object(__TwigTemplate_65a9fac7216aa48f00bc1d919e1aa41d99e3adf96bd49e230dcde078fd470c3e), 'block_page_head'), 'content' => array(object(__TwigTemplate_65a9fac7216aa48f00bc1d919e1aa41d99e3adf96bd49e230dcde078fd470c3e), 'block_content')))
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/cache/gantry5/g5_hydrogen/twig/98/984ffd473a9dad9725966609c1cd9d1ffbddfa9b80c7c7c21efed5c9ab59ca7e.php:35)
  at __TwigTemplate_79fb545c5f9cacdf5305b293d3c5073a3cc969f1e557ae2093fb9fbc9fa59ee6->doDisplay(array('errorcode' => 404, 'error' => 'Seite nicht gefunden', 'debug' => false, 'backtrace' => null, 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform), 'gantry' => object(Gantry)), array('page_footer' => array(object(__TwigTemplate_79fb545c5f9cacdf5305b293d3c5073a3cc969f1e557ae2093fb9fbc9fa59ee6), 'block_page_footer'), 'page_head' => array(object(__TwigTemplate_65a9fac7216aa48f00bc1d919e1aa41d99e3adf96bd49e230dcde078fd470c3e), 'block_page_head'), 'content' => array(object(__TwigTemplate_65a9fac7216aa48f00bc1d919e1aa41d99e3adf96bd49e230dcde078fd470c3e), 'block_content')))
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:453)
  at Twig\Template->displayWithErrorHandling(array('errorcode' => 404, 'error' => 'Seite nicht gefunden', 'debug' => false, 'backtrace' => null, 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform), 'gantry' => object(Gantry)), array('page_footer' => array(object(__TwigTemplate_79fb545c5f9cacdf5305b293d3c5073a3cc969f1e557ae2093fb9fbc9fa59ee6), 'block_page_footer'), 'page_head' => array(object(__TwigTemplate_65a9fac7216aa48f00bc1d919e1aa41d99e3adf96bd49e230dcde078fd470c3e), 'block_page_head'), 'content' => array(object(__TwigTemplate_65a9fac7216aa48f00bc1d919e1aa41d99e3adf96bd49e230dcde078fd470c3e), 'block_content')))
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:420)
  at Twig\Template->display(array('errorcode' => 404, 'error' => 'Seite nicht gefunden', 'debug' => false, 'backtrace' => null, 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform), 'gantry' => object(Gantry)), array('page_head' => array(object(__TwigTemplate_65a9fac7216aa48f00bc1d919e1aa41d99e3adf96bd49e230dcde078fd470c3e), 'block_page_head'), 'content' => array(object(__TwigTemplate_65a9fac7216aa48f00bc1d919e1aa41d99e3adf96bd49e230dcde078fd470c3e), 'block_content')))
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/cache/gantry5/g5_hydrogen/twig/79/79fd8759f3f9ca74770839c46305477a4f8ae3d18bf3dd40c7df256062f4ea0d.php:36)
  at __TwigTemplate_65a9fac7216aa48f00bc1d919e1aa41d99e3adf96bd49e230dcde078fd470c3e->doDisplay(array('errorcode' => 404, 'error' => 'Seite nicht gefunden', 'debug' => false, 'backtrace' => null, 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform), 'gantry' => object(Gantry)), array('page_head' => array(object(__TwigTemplate_65a9fac7216aa48f00bc1d919e1aa41d99e3adf96bd49e230dcde078fd470c3e), 'block_page_head'), 'content' => array(object(__TwigTemplate_65a9fac7216aa48f00bc1d919e1aa41d99e3adf96bd49e230dcde078fd470c3e), 'block_content')))
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:453)
  at Twig\Template->displayWithErrorHandling(array('errorcode' => 404, 'error' => 'Seite nicht gefunden', 'debug' => false, 'backtrace' => null, 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform), 'gantry' => object(Gantry)), array('page_head' => array(object(__TwigTemplate_65a9fac7216aa48f00bc1d919e1aa41d99e3adf96bd49e230dcde078fd470c3e), 'block_page_head'), 'content' => array(object(__TwigTemplate_65a9fac7216aa48f00bc1d919e1aa41d99e3adf96bd49e230dcde078fd470c3e), 'block_content')))
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:420)
  at Twig\Template->display(array('errorcode' => 404, 'error' => 'Seite nicht gefunden', 'debug' => false, 'backtrace' => null, 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform)))
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:432)
  at Twig\Template->render(array('errorcode' => 404, 'error' => 'Seite nicht gefunden', 'debug' => false, 'backtrace' => null, 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform)), array())
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/gantry5/compat/vendor/twig/twig/src/TemplateWrapper.php:47)
  at Twig\TemplateWrapper->render(array('errorcode' => 404, 'error' => 'Seite nicht gefunden', 'debug' => false, 'backtrace' => null, 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform)))
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/gantry5/compat/vendor/twig/twig/src/Environment.php:384)
  at Twig\Environment->render('error.html.twig', array('errorcode' => 404, 'error' => 'Seite nicht gefunden', 'debug' => false, 'backtrace' => null, 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform)))
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/gantry5/src/classes/Gantry/Component/Theme/AbstractTheme.php:176)
  at Gantry\Component\Theme\AbstractTheme->render('error.html.twig', array('errorcode' => 404, 'error' => 'Seite nicht gefunden', 'debug' => false, 'backtrace' => null, 'theme' => object(GantryTheme), 'site' => object(Site), 'joomla' => object(Platform)))
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/templates/g5_hydrogen/error.php:46)
  at require('/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/templates/g5_hydrogen/error.php')
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/src/Document/HtmlDocument.php:721)
  at Joomla\CMS\Document\HtmlDocument->_loadTemplate('/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/templates/g5_hydrogen', 'error.php')
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/src/Document/HtmlDocument.php:776)
  at Joomla\CMS\Document\HtmlDocument->_fetchTemplate(array('template' => 'g5_hydrogen', 'directory' => '/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/templates', 'debug' => false, 'csp_nonce' => null, 'templateInherits' => '', 'params' => object(Registry), 'file' => 'error.php'))
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/src/Document/HtmlDocument.php:612)
  at Joomla\CMS\Document\HtmlDocument->parse(array('template' => 'g5_hydrogen', 'directory' => '/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/templates', 'debug' => false, 'csp_nonce' => null, 'templateInherits' => '', 'params' => object(Registry), 'file' => 'error.php'))
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/src/Document/HtmlDocument.php:630)
  at Joomla\CMS\Document\HtmlDocument->render(false, array('template' => 'g5_hydrogen', 'directory' => '/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/templates', 'debug' => false, 'csp_nonce' => null, 'templateInherits' => '', 'params' => object(Registry), 'file' => 'error.php'))
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/src/Document/ErrorDocument.php:139)
  at Joomla\CMS\Document\ErrorDocument->render(false, array('template' => 'g5_hydrogen', 'directory' => '/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/templates', 'debug' => false, 'csp_nonce' => null, 'templateInherits' => '', 'params' => object(Registry), 'file' => 'error.php'))
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/src/Error/Renderer/HtmlRenderer.php:78)
  at Joomla\CMS\Error\Renderer\HtmlRenderer->render(object(RouteNotFoundException))
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/src/Exception/ExceptionHandler.php:126)
  at Joomla\CMS\Exception\ExceptionHandler::render(object(RouteNotFoundException))
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/src/Exception/ExceptionHandler.php:72)
  at Joomla\CMS\Exception\ExceptionHandler::handleException(object(RouteNotFoundException))
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/src/Application/CMSApplication.php:322)
  at Joomla\CMS\Application\CMSApplication->execute()
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/includes/app.php:61)
  at require_once('/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/includes/app.php')
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/index.php:32)                
[1/2] RouteNotFoundException
Joomla\CMS\Router\Exception\RouteNotFoundException:
Seite nicht gefunden

  at /var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/src/Router/Router.php:155
  at Joomla\CMS\Router\Router->parse(object(Uri), true)
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/src/Application/SiteApplication.php:746)
  at Joomla\CMS\Application\SiteApplication->route()
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/src/Application/SiteApplication.php:232)
  at Joomla\CMS\Application\SiteApplication->doExecute()
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/libraries/src/Application/CMSApplication.php:293)
  at Joomla\CMS\Application\CMSApplication->execute()
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/includes/app.php:61)
  at require_once('/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/includes/app.php')
     (/var/www/vhosts/h69055.web52.alfahosting-server.de/html/cms/index.php:32)