RouteNotFoundException Error

HTTP 500 Whoops, looks like something went wrong.

Undefined constant "Joomla\CMS\MVC\View\JPATH_COMPONENT"

Exceptions 2

Error

  1.         // Set a base path for use by the view
  2.         if (\array_key_exists('base_path'$config)) {
  3.             $this->_basePath $config['base_path'];
  4.         } else {
  5.             $this->_basePath JPATH_COMPONENT;
  6.         }
  7.         // Set the default template search path
  8.         if (\array_key_exists('template_path'$config)) {
  9.             // User-defined dirs
  1.             unset($attributes->force_content_triggers);
  2.         }
  3.         [$template$layout] = self::getTemplateAndLayout($attributes);
  4.         $view = new ArticleView;
  5.         $view->setParams($id$template$layout$params$attributes);
  6.         return $view->display();
  7.     }
  1.         return $this->createUrlsLink($link$label$target);
  2.     }
  3.     private function getArticleLayout()
  4.     {
  5.         return ArticleLayout::render($this->get('id'), $this->attributes);
  6.     }
  7.     private function getArticleText($key 'text')
  8.     {
  9.         $article_id $this->get('id');
  1.     public function getValue()
  2.     {
  3.         switch ($this->key)
  4.         {
  5.             case 'article':
  6.                 return $this->getArticleLayout();
  7.             case 'created':
  8.                 return $this->getCreated();
  9.             case 'modified':
  1.     /**
  2.      * @return mixed
  3.      */
  4.     public function getOutput()
  5.     {
  6.         $value $this->getValue();
  7.         $this->postProcessOutput($value);
  8.         return $value;
  9.     }
  1.         if ( ! ($this->data_group instanceof DataGroup))
  2.         {
  3.             return '';
  4.         }
  5.         $output $this->data_group->getOutput();
  6.         return $output;
  7.     }
  8.     public function replace(&$html$replace_once true)
  1.         if ( ! str_contains($html$this->match[0]))
  2.         {
  3.             return;
  4.         }
  5.         $output $this->getOutput();
  6.         if ($replace_once)
  7.         {
  8.             $html RL_String::replaceOnce($this->match[0], $output$html);
  1.             $data_tag->replace($html);
  2.         }
  3.         foreach ($this->data_tags as $data_tag)
  4.         {
  5.             $data_tag->replace($html);
  6.         }
  7.     }
  8.     /**
  9.      * @param array $data_tags
  1.      */
  2.     public function render()
  3.     {
  4.         $this->if_statements->replace($this->html);
  5.         $this->foreach_tags->replace($this->html);
  6.         $this->data_tags->replace($this->html);
  7.         return $this->html;
  8.     }
  9.     /**
  1.         $html = [];
  2.         foreach ($this->articles as $article)
  3.         {
  4.             $html[] = $article->render();
  5.         }
  6.         $html RL_Array::implode(
  7.             $html,
  8.             $this->attributes->separator ?? '',
  1.         $this->protectNestedTags($html);
  2.         $this->protectCustomHtmlForArticlesField($html);
  3.         // protect ignore tags
  4.         RL_Protect::protectByRegex($htmlParams::getRegex('ignoretag'), 'content');
  5.         $html $this->getArticles($html)->render();
  6.         if ( ! empty($this->database->settings->url_domain))
  7.         {
  8.             $this->setDomainInUrls($html$this->database->settings->url_domain);
  9.         }
  1.     private static function replaceTagsInString(&$string$tags$strip_html false)
  2.     {
  3.         /** @var PluginTag $tag */
  4.         foreach ($tags as $tag)
  5.         {
  6.             $output self::$message Protect::getMessageCommentTag(self::$message) : $tag->render();
  7.             if ($strip_html)
  8.             {
  9.                 $output RL_Html::removeHtmlTags($outputtrue);
  10.             }
  1.         while (
  2.             $break++ < $max_loops
  3.             && ! empty($tags)
  4.         )
  5.         {
  6.             self::replaceTagsInString($string$tags$strip_html);
  7.             $tags self::getPluginTags($string);
  8.         }
  9.         $full_string $pre_string $string $post_string;
  1.         }
  2.         if ($replace)
  3.         {
  4.             $strip_html $area === 'head' && $params->strip_html_in_head;
  5.             self::process($string$strip_html);
  6.         }
  7.         RL_Protect::unprotect($string);
  8.         return $string;
  1.             if ( ! isset($module->content))
  2.             {
  3.                 return;
  4.             }
  5.             Replace::render($module->content'module');
  6.         }
  7.         /**
  8.          * @param string $buffer
  9.          *
PlgSystemArticlesAnywhere->handleOnAfterRenderModule() in /kunden/404342_79098/131_Praxis-Brich-Munk/2024/libraries/regularlabs/src/SystemPlugin.php (line 154)
  1.     public function onAfterRenderModule(&$module, &$params) : void
  2.     {
  3.         if (!$this->passChecks()) {
  4.             return;
  5.         }
  6.         $this->handleOnAfterRenderModule($module$params);
  7.     }
  8.     /**
  9.      * @param string $buffer
  10.      * @param array  $params
  11.      */
  1.                 }
  2.                 // Convert to indexed array for unpacking.
  3.                 $arguments \array_values($arguments);
  4.                 $result $this->{$methodName}(...$arguments);
  5.                 // Ignore null results
  6.                 if ($result === null) {
  7.                     return;
  8.                 }
  1.                 if ($event->isStopped())
  2.                 {
  3.                     return $event;
  4.                 }
  5.                 $listener($event);
  6.             }
  7.         }
  8.         return $event;
  9.     }
  1.             $event     = new $className($eventName$args);
  2.         } else {
  3.             throw new \InvalidArgumentException('The arguments must either be an event or an array');
  4.         }
  5.         $result $dispatcher->dispatch($eventName$event);
  6.         // @todo - There are still test cases where the result isn't defined, temporarily leave the isset check in place
  7.         return !isset($result['result']) || \is_null($result['result']) ? [] : $result['result'];
  8.     }
  9. }
  1.         }
  2.         // Revert the scope
  3.         $app->scope $scope;
  4.         $app->triggerEvent('onAfterRenderModule', [&$module, &$attribs]);
  5.         if (JDEBUG) {
  6.             Profiler::getInstance('Application')->mark('afterRenderModule ' $module->module ' (' $module->title ')');
  7.         }
  1.             $module->contentRendered true;
  2.             return $module->content;
  3.         }
  4.         return ModuleHelper::renderModule($module$attribs);
  5.     }
  6. }
  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.
  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.             }
  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.                 }
  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();
  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();
  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.      *
  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.      *
  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);
  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':
  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.             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();
  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();
  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.      *
  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.      *
  1. unset($gantry['configuration']);
  2. // Render the page.
  3. echo $theme
  4.     ->setLayout('_error'true)
  5.     ->render('error.html.twig'$context);
require('/kunden/404342_79098/131_Praxis-Brich-Munk/2024/templates/brich-munk/error.php') in /kunden/404342_79098/131_Praxis-Brich-Munk/2024/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;
  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.     /**
  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.      *
  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.         }
  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.      *
  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.      *
  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('/kunden/404342_79098/131_Praxis-Brich-Munk/2024/includes/app.php') in /kunden/404342_79098/131_Praxis-Brich-Munk/2024/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('/kunden/404342_79098/131_Praxis-Brich-Munk/2024/includes/app.php') in /kunden/404342_79098/131_Praxis-Brich-Munk/2024/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 "Joomla\CMS\MVC\View\JPATH_COMPONENT"

  at /kunden/404342_79098/131_Praxis-Brich-Munk/2024/libraries/src/MVC/View/HtmlView.php:131
  at Joomla\CMS\MVC\View\HtmlView->__construct()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/plugins/system/articlesanywhere/src/DataGroups/Helpers/ArticleLayout.php:39)
  at RegularLabs\Plugin\System\ArticlesAnywhere\DataGroups\Helpers\ArticleLayout::render()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/plugins/system/articlesanywhere/src/DataGroups/Article.php:859)
  at RegularLabs\Plugin\System\ArticlesAnywhere\DataGroups\Article->getArticleLayout()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/plugins/system/articlesanywhere/src/DataGroups/Article.php:220)
  at RegularLabs\Plugin\System\ArticlesAnywhere\DataGroups\Article->getValue()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/plugins/system/articlesanywhere/src/DataGroups/DataGroup.php:280)
  at RegularLabs\Plugin\System\ArticlesAnywhere\DataGroups\DataGroup->getOutput()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/plugins/system/articlesanywhere/src/DataTags/DataTag.php:92)
  at RegularLabs\Plugin\System\ArticlesAnywhere\DataTags\DataTag->getOutput()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/plugins/system/articlesanywhere/src/DataTags/DataTag.php:104)
  at RegularLabs\Plugin\System\ArticlesAnywhere\DataTags\DataTag->replace()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/plugins/system/articlesanywhere/src/DataTags/DataTags.php:98)
  at RegularLabs\Plugin\System\ArticlesAnywhere\DataTags\DataTags->replace()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/plugins/system/articlesanywhere/src/Article.php:71)
  at RegularLabs\Plugin\System\ArticlesAnywhere\Article->render()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/plugins/system/articlesanywhere/src/Articles.php:224)
  at RegularLabs\Plugin\System\ArticlesAnywhere\Articles->render()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/plugins/system/articlesanywhere/src/PluginTag.php:76)
  at RegularLabs\Plugin\System\ArticlesAnywhere\PluginTag->render()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/plugins/system/articlesanywhere/src/Replace.php:226)
  at RegularLabs\Plugin\System\ArticlesAnywhere\Replace::replaceTagsInString()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/plugins/system/articlesanywhere/src/Replace.php:213)
  at RegularLabs\Plugin\System\ArticlesAnywhere\Replace::process()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/plugins/system/articlesanywhere/src/Replace.php:98)
  at RegularLabs\Plugin\System\ArticlesAnywhere\Replace::render()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/plugins/system/articlesanywhere/articlesanywhere.php:111)
  at PlgSystemArticlesAnywhere->handleOnAfterRenderModule()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/libraries/regularlabs/src/SystemPlugin.php:154)
  at RegularLabs\Library\SystemPlugin->onAfterRenderModule()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/libraries/src/Plugin/CMSPlugin.php:289)
  at Joomla\CMS\Plugin\CMSPlugin->Joomla\CMS\Plugin\{closure}()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/libraries/vendor/joomla/event/src/Dispatcher.php:486)
  at Joomla\Event\Dispatcher->dispatch()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/libraries/src/Application/EventAware.php:111)
  at Joomla\CMS\Application\WebApplication->triggerEvent()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/libraries/src/Helper/ModuleHelper.php:235)
  at Joomla\CMS\Helper\ModuleHelper::renderModule()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/libraries/src/Document/Renderer/Html/ModuleRenderer.php:99)
  at Joomla\CMS\Document\Renderer\Html\ModuleRenderer->render()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/libraries/gantry5/src/classes/Gantry/Framework/Platform.php:294)
  at Gantry\Framework\Platform->displayModule()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/libraries/gantry5/src/classes/Gantry/Framework/Platform.php:342)
  at Gantry\Framework\Platform->displayModules()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:702)
  at Twig\Template->getAttribute()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/cache/gantry5/brich-munk/twig/6e/6e1ec8d44f5e425e01a281158b87a1f189ccefee356b44ad8e7b142af551cc8c.php:43)
  at __TwigTemplate_a171fb48cf22906d09fa66f4b1d3ca6945293f478b49720cf76f4bde2f5f8a4b->block_particle()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:214)
  at Twig\Template->displayBlock()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/cache/gantry5/brich-munk/twig/86/868a08f1ba6ab78ea65046b77482e6ab9a656354ce39bd5c8c4ac8bd01691755.php:73)
  at __TwigTemplate_5325f9e8a6308c003721e83f18e17e3137eb4b228dcdf5a3f1c9916182cc1125->doDisplay()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:453)
  at Twig\Template->displayWithErrorHandling()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:420)
  at Twig\Template->display()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/cache/gantry5/brich-munk/twig/6e/6e1ec8d44f5e425e01a281158b87a1f189ccefee356b44ad8e7b142af551cc8c.php:35)
  at __TwigTemplate_a171fb48cf22906d09fa66f4b1d3ca6945293f478b49720cf76f4bde2f5f8a4b->doDisplay()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:453)
  at Twig\Template->displayWithErrorHandling()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:420)
  at Twig\Template->display()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/cache/gantry5/brich-munk/twig/99/99926549a28d8bfebd842f14e5a0609eea0cd205fe66582ca7baa40967bd5d8d.php:53)
  at __TwigTemplate_d8f3a01587c4bf1efa111d178f7fd3873c5be244eb8a8c83148d5b578d2ca2f8->doDisplay()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:453)
  at Twig\Template->displayWithErrorHandling()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:420)
  at Twig\Template->display()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:432)
  at Twig\Template->render()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/libraries/gantry5/compat/vendor/twig/twig/src/TemplateWrapper.php:47)
  at Twig\TemplateWrapper->render()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/libraries/gantry5/compat/vendor/twig/twig/src/Environment.php:384)
  at Twig\Environment->render()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/libraries/gantry5/src/classes/Gantry/Component/Theme/AbstractTheme.php:176)
  at Gantry\Component\Theme\AbstractTheme->render()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/libraries/gantry5/src/classes/Gantry/Component/Theme/ThemeTrait.php:825)
  at Gantry\Framework\Theme->getContent()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/libraries/gantry5/src/classes/Gantry/Component/Theme/ThemeTrait.php:718)
  at Gantry\Framework\Theme->renderContent()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/libraries/gantry5/src/classes/Gantry/Component/Theme/ThemeTrait.php:643)
  at Gantry\Framework\Theme->prepareLayout()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/libraries/gantry5/src/classes/Gantry/Component/Theme/ThemeTrait.php:627)
  at Gantry\Framework\Theme->prepareLayout()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/libraries/gantry5/src/classes/Gantry/Component/Theme/ThemeTrait.php:627)
  at Gantry\Framework\Theme->prepareLayout()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/libraries/gantry5/src/classes/Gantry/Component/Theme/ThemeTrait.php:627)
  at Gantry\Framework\Theme->prepareLayout()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/libraries/gantry5/src/classes/Gantry/Component/Theme/ThemeTrait.php:468)
  at Gantry\Framework\Theme->segments()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:700)
  at Twig\Template->getAttribute()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/cache/gantry5/brich-munk/twig/a8/a8db29e5fe41412946024c3453eb5971b470880e5b3a5f207f55b7542f78ce4b.php:47)
  at __TwigTemplate_84591cb8e49bc57cca27a12ed8ed0b8c985b1c4bd33f8cfe748eda593153f030->doDisplay()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:453)
  at Twig\Template->displayWithErrorHandling()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:420)
  at Twig\Template->display()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/cache/gantry5/brich-munk/twig/98/984ffd473a9dad9725966609c1cd9d1ffbddfa9b80c7c7c21efed5c9ab59ca7e.php:35)
  at __TwigTemplate_79fb545c5f9cacdf5305b293d3c5073a3cc969f1e557ae2093fb9fbc9fa59ee6->doDisplay()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:453)
  at Twig\Template->displayWithErrorHandling()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:420)
  at Twig\Template->display()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/cache/gantry5/brich-munk/twig/79/79fd8759f3f9ca74770839c46305477a4f8ae3d18bf3dd40c7df256062f4ea0d.php:36)
  at __TwigTemplate_65a9fac7216aa48f00bc1d919e1aa41d99e3adf96bd49e230dcde078fd470c3e->doDisplay()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:453)
  at Twig\Template->displayWithErrorHandling()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:420)
  at Twig\Template->display()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/libraries/gantry5/compat/vendor/twig/twig/src/Template.php:432)
  at Twig\Template->render()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/libraries/gantry5/compat/vendor/twig/twig/src/TemplateWrapper.php:47)
  at Twig\TemplateWrapper->render()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/libraries/gantry5/compat/vendor/twig/twig/src/Environment.php:384)
  at Twig\Environment->render()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/libraries/gantry5/src/classes/Gantry/Component/Theme/AbstractTheme.php:176)
  at Gantry\Component\Theme\AbstractTheme->render()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/templates/brich-munk/error.php:32)
  at require('/kunden/404342_79098/131_Praxis-Brich-Munk/2024/templates/brich-munk/error.php')
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/libraries/src/Document/HtmlDocument.php:721)
  at Joomla\CMS\Document\HtmlDocument->_loadTemplate()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/libraries/src/Document/HtmlDocument.php:776)
  at Joomla\CMS\Document\HtmlDocument->_fetchTemplate()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/libraries/src/Document/HtmlDocument.php:612)
  at Joomla\CMS\Document\HtmlDocument->parse()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/libraries/src/Document/HtmlDocument.php:630)
  at Joomla\CMS\Document\HtmlDocument->render()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/libraries/src/Document/ErrorDocument.php:139)
  at Joomla\CMS\Document\ErrorDocument->render()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/libraries/src/Error/Renderer/HtmlRenderer.php:78)
  at Joomla\CMS\Error\Renderer\HtmlRenderer->render()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/libraries/src/Exception/ExceptionHandler.php:126)
  at Joomla\CMS\Exception\ExceptionHandler::render()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/libraries/src/Exception/ExceptionHandler.php:72)
  at Joomla\CMS\Exception\ExceptionHandler::handleException()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/libraries/src/Application/CMSApplication.php:322)
  at Joomla\CMS\Application\CMSApplication->execute()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/includes/app.php:61)
  at require_once('/kunden/404342_79098/131_Praxis-Brich-Munk/2024/includes/app.php')
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/index.php:32)                
[1/2] RouteNotFoundException
Joomla\CMS\Router\Exception\RouteNotFoundException:
Seite nicht gefunden

  at /kunden/404342_79098/131_Praxis-Brich-Munk/2024/libraries/src/Router/Router.php:155
  at Joomla\CMS\Router\Router->parse()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/libraries/src/Application/SiteApplication.php:746)
  at Joomla\CMS\Application\SiteApplication->route()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/libraries/src/Application/SiteApplication.php:232)
  at Joomla\CMS\Application\SiteApplication->doExecute()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/libraries/src/Application/CMSApplication.php:293)
  at Joomla\CMS\Application\CMSApplication->execute()
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/includes/app.php:61)
  at require_once('/kunden/404342_79098/131_Praxis-Brich-Munk/2024/includes/app.php')
     (/kunden/404342_79098/131_Praxis-Brich-Munk/2024/index.php:32)