Warning: include(/www/htdocs/w00d4fe7/hp_bbs1_v2/libraries/vendor/composer/../../../libraries/src/Document/HtmlDocument.php): Failed to open stream: No such file or directory in /www/htdocs/w00d4fe7/hp_bbs1_v2/libraries/vendor/composer/ClassLoader.php on line 576

Warning: include(/www/htdocs/w00d4fe7/hp_bbs1_v2/libraries/vendor/composer/../../../libraries/src/Document/HtmlDocument.php): Failed to open stream: No such file or directory in /www/htdocs/w00d4fe7/hp_bbs1_v2/libraries/vendor/composer/ClassLoader.php on line 576

Warning: include(): Failed opening '/www/htdocs/w00d4fe7/hp_bbs1_v2/libraries/vendor/composer/../../../libraries/src/Document/HtmlDocument.php' for inclusion (include_path='.:/usr/share/php:..') in /www/htdocs/w00d4fe7/hp_bbs1_v2/libraries/vendor/composer/ClassLoader.php on line 576

Warning: Class "Joomla\CMS\Document\HtmlDocument" not found in /www/htdocs/w00d4fe7/hp_bbs1_v2/libraries/loader.php on line 576
Attempted to load class "HtmlDocument" from namespace "Joomla\CMS\Document". Did you forget a "use" statement for another namespace? (500 Whoops, looks like something went wrong.)

RouteNotFoundException ClassNotFoundError

HTTP 500 Whoops, looks like something went wrong.

Attempted to load class "HtmlDocument" from namespace "Joomla\CMS\Document".
Did you forget a "use" statement for another namespace?

Exceptions 2

Symfony\Component\ErrorHandler\Error\ ClassNotFoundError

  1. /**
  2.  * ErrorDocument class, provides an easy interface to parse and display an HTML based error page
  3.  *
  4.  * @since  1.7.0
  5.  */
  6. class ErrorDocument extends HtmlDocument
  7. {
  8.     /**
  9.      * Flag if debug mode has been enabled
  10.      *
  11.      * @var    boolean
  1.          *
  2.          * @param  string $file
  3.          * @return void
  4.          */
  5.         self::$includeFile \Closure::bind(static function($file) {
  6.             include $file;
  7.         }, nullnull);
  8.     }
  9. }
  1.      */
  2.     public function loadClass($class)
  3.     {
  4.         if ($file $this->findFile($class)) {
  5.             $includeFile self::$includeFile;
  6.             $includeFile($file);
  7.             return true;
  8.         }
  9.         return null;
ClassLoader->loadClass('Joomla\\CMS\\Document\\ErrorDocument') in /www/htdocs/w00d4fe7/hp_bbs1_v2/libraries/src/Autoload/ClassLoader.php (line 59)
  1.      *
  2.      * @since   3.4
  3.      */
  4.     public function loadClass($class)
  5.     {
  6.         if ($result $this->loader->loadClass($class)) {
  7.             \JLoader::applyAliasFor($class);
  8.         }
  9.         return $result;
  10.     }
ClassLoader->loadClass('Joomla\\CMS\\Document\\ErrorDocument')
class_exists('Joomla\\CMS\\Document\\ErrorDocument') in /www/htdocs/w00d4fe7/hp_bbs1_v2/libraries/src/Document/Factory.php (line 45)
  1.         $type  preg_replace('/[^A-Z0-9_\.-]/i'''$type);
  2.         $ntype null;
  3.         $class __NAMESPACE__ '\\' ucfirst($type) . 'Document';
  4.         if (!class_exists($class)) {
  5.             $class 'JDocument' ucfirst($type);
  6.         }
  7.         if (!class_exists($class)) {
  8.             $ntype $type;
Factory->createDocument('error', array('charset' => 'utf-8', 'lineend' => 'unix', 'tab' => ' ', 'language' => 'de-DE', 'direction' => 'ltr')) in /www/htdocs/w00d4fe7/hp_bbs1_v2/libraries/src/Error/AbstractRenderer.php (line 112)
  1.         if (Factory::$language) {
  2.             $attributes['language']  = Factory::getLanguage()->getTag();
  3.             $attributes['direction'] = Factory::getLanguage()->isRtl() ? 'rtl' 'ltr';
  4.         }
  5.         return Factory::getContainer()->get(FactoryInterface::class)->createDocument($this->type$attributes);
  6.     }
  7. }
  1.      */
  2.     public function getDocument(): Document
  3.     {
  4.         // Load the document if not already
  5.         if (!$this->document) {
  6.             $this->document $this->loadDocument();
  7.         }
  8.         return $this->document;
  9.     }
  1.                 // Default to the HTML renderer
  2.                 $renderer AbstractRenderer::getRenderer('html');
  3.             }
  4.             // Reset the document object in the factory, this gives us a clean slate and lets everything render properly
  5.             Factory::$document $renderer->getDocument();
  6.             Factory::getApplication()->loadDocument(Factory::$document);
  7.             // Trigger the onAfterInitialiseDocument event.
  8.             $app->getDispatcher()->dispatch(
  9.                 'onAfterInitialiseDocument',
ExceptionHandler::render(object(RouteNotFoundException)) in /www/htdocs/w00d4fe7/hp_bbs1_v2/libraries/src/Exception/ExceptionHandler.php (line 76)
  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 /www/htdocs/w00d4fe7/hp_bbs1_v2/libraries/src/Application/CMSApplication.php (line 334)
  1.             );
  2.             // Trigger the onError event.
  3.             $this->dispatchEvent('onError'$event);
  4.             ExceptionHandler::handleException($event->getError());
  5.         }
  6.         // Trigger the onBeforeRespond event.
  7.         $this->dispatchEvent(
  8.             'onBeforeRespond',
CMSApplication->execute() in /www/htdocs/w00d4fe7/hp_bbs1_v2/includes/app.php (line 58)
  1. // Set the application as global app
  2. \Joomla\CMS\Factory::$application $app;
  3. // Execute the application.
  4. $app->execute();
require_once('/www/htdocs/w00d4fe7/hp_bbs1_v2/includes/app.php') in /www/htdocs/w00d4fe7/hp_bbs1_v2/index.php (line 51)
  1.     // ... die
  2.     die();
  3. }
  4. // Run the application - All executable code should be triggered through this file
  5. require_once __DIR__ '/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();
CMSApplication->execute() in /www/htdocs/w00d4fe7/hp_bbs1_v2/includes/app.php (line 58)
  1. // Set the application as global app
  2. \Joomla\CMS\Factory::$application $app;
  3. // Execute the application.
  4. $app->execute();
require_once('/www/htdocs/w00d4fe7/hp_bbs1_v2/includes/app.php') in /www/htdocs/w00d4fe7/hp_bbs1_v2/index.php (line 51)
  1.     // ... die
  2.     die();
  3. }
  4. // Run the application - All executable code should be triggered through this file
  5. require_once __DIR__ '/includes/app.php';

Stack Traces 2

[2/2] ClassNotFoundError
Symfony\Component\ErrorHandler\Error\ClassNotFoundError:
Attempted to load class "HtmlDocument" from namespace "Joomla\CMS\Document".
Did you forget a "use" statement for another namespace?

  at /www/htdocs/w00d4fe7/hp_bbs1_v2/libraries/src/Document/ErrorDocument.php:24
  at include()
     (/www/htdocs/w00d4fe7/hp_bbs1_v2/libraries/vendor/composer/ClassLoader.php:576)
  at Composer\Autoload\{closure}('/www/htdocs/w00d4fe7/hp_bbs1_v2/libraries/vendor/composer/../../../libraries/src/Document/ErrorDocument.php')
     (/www/htdocs/w00d4fe7/hp_bbs1_v2/libraries/vendor/composer/ClassLoader.php:427)
  at Composer\Autoload\ClassLoader->loadClass('Joomla\\CMS\\Document\\ErrorDocument')
     (/www/htdocs/w00d4fe7/hp_bbs1_v2/libraries/src/Autoload/ClassLoader.php:59)
  at Joomla\CMS\Autoload\ClassLoader->loadClass('Joomla\\CMS\\Document\\ErrorDocument')
  at class_exists('Joomla\\CMS\\Document\\ErrorDocument')
     (/www/htdocs/w00d4fe7/hp_bbs1_v2/libraries/src/Document/Factory.php:45)
  at Joomla\CMS\Document\Factory->createDocument('error', array('charset' => 'utf-8', 'lineend' => 'unix', 'tab' => '	', 'language' => 'de-DE', 'direction' => 'ltr'))
     (/www/htdocs/w00d4fe7/hp_bbs1_v2/libraries/src/Error/AbstractRenderer.php:112)
  at Joomla\CMS\Error\AbstractRenderer->loadDocument()
     (/www/htdocs/w00d4fe7/hp_bbs1_v2/libraries/src/Error/AbstractRenderer.php:54)
  at Joomla\CMS\Error\AbstractRenderer->getDocument()
     (/www/htdocs/w00d4fe7/hp_bbs1_v2/libraries/src/Exception/ExceptionHandler.php:130)
  at Joomla\CMS\Exception\ExceptionHandler::render(object(RouteNotFoundException))
     (/www/htdocs/w00d4fe7/hp_bbs1_v2/libraries/src/Exception/ExceptionHandler.php:76)
  at Joomla\CMS\Exception\ExceptionHandler::handleException(object(RouteNotFoundException))
     (/www/htdocs/w00d4fe7/hp_bbs1_v2/libraries/src/Application/CMSApplication.php:334)
  at Joomla\CMS\Application\CMSApplication->execute()
     (/www/htdocs/w00d4fe7/hp_bbs1_v2/includes/app.php:58)
  at require_once('/www/htdocs/w00d4fe7/hp_bbs1_v2/includes/app.php')
     (/www/htdocs/w00d4fe7/hp_bbs1_v2/index.php:51)                
[1/2] RouteNotFoundException
Joomla\CMS\Router\Exception\RouteNotFoundException:
Seite nicht gefunden

  at /www/htdocs/w00d4fe7/hp_bbs1_v2/libraries/src/Router/Router.php:166
  at Joomla\CMS\Router\Router->parse(object(Uri), true)
     (/www/htdocs/w00d4fe7/hp_bbs1_v2/libraries/src/Application/SiteApplication.php:767)
  at Joomla\CMS\Application\SiteApplication->route()
     (/www/htdocs/w00d4fe7/hp_bbs1_v2/libraries/src/Application/SiteApplication.php:243)
  at Joomla\CMS\Application\SiteApplication->doExecute()
     (/www/htdocs/w00d4fe7/hp_bbs1_v2/libraries/src/Application/CMSApplication.php:304)
  at Joomla\CMS\Application\CMSApplication->execute()
     (/www/htdocs/w00d4fe7/hp_bbs1_v2/includes/app.php:58)
  at require_once('/www/htdocs/w00d4fe7/hp_bbs1_v2/includes/app.php')
     (/www/htdocs/w00d4fe7/hp_bbs1_v2/index.php:51)