Joomla\CMS\Component\Exception\MissingComponentException [404]

Komponente nicht gefunden
.../libraries/src/Component/ComponentHelper.php:357
352             \define('JPATH_COMPONENT_ADMINISTRATOR', JPATH_ADMINISTRATOR . '/components/' . $option);
353         }
354 
355         // If component is disabled throw error
356         if (!static::isEnabled($option)) {
357             throw new MissingComponentException(Text::_('JLIB_APPLICATION_ERROR_COMPONENT_NOT_FOUND'), 404);
358         }
359 
360         ob_start();
361         $app->bootComponent($option)->getDispatcher($app)->dispatch();
362         $contents = ob_get_clean();

Joomla\CMS\Component\ComponentHelper::renderComponent()

.../libraries/src/Application/SiteApplication.php:218
213         $this->dispatchEvent(
214             'onAfterInitialiseDocument',
215             new AfterInitialiseDocumentEvent('onAfterInitialiseDocument', ['subject' => $this, 'document' => $document])
216         );
217 
218         $contents = ComponentHelper::renderComponent($component);
219         $document->setBuffer($contents, ['type' => 'component']);
220 
221         // Trigger the onAfterDispatch event.
222         $this->dispatchEvent(
223             'onAfterDispatch',

Arguments

option
string(10) "com_mailto"

Joomla\CMS\Application\SiteApplication->dispatch()

.../libraries/src/Application/SiteApplication.php:261
256              */
257             $this->checkUserRequireReset('com_users', 'profile', 'edit', 'com_users/profile.save,com_users/profile.apply,com_users/user.logout');
258         }
259 
260         // Dispatch the application
261         $this->dispatch();
262 
263         // Mark afterDispatch in the profiler.
264         JDEBUG ? $this->profiler->mark('afterDispatch') : null;
265     }
266 

Joomla\CMS\Application\SiteApplication->doExecute()

.../libraries/src/Application/CMSApplication.php:306
301             $this->sanityCheckSystemVariables();
302             $this->setupLogging();
303             $this->createExtensionNamespaceMap();
304 
305             // Perform application routines.
306             $this->doExecute();
307 
308             // If we have an application document object, render it.
309             if ($this->document instanceof \Joomla\CMS\Document\Document) {
310                 // Render the application output.
311                 $this->render();

Joomla\CMS\Application\CMSApplication->execute()

.../includes/app.php:58
53 
54 // Set the application as global app
55 \Joomla\CMS\Factory::$application = $app;
56 
57 // Execute the application.
58 $app->execute();

require_once()

.../index.php:32
27  * define() is used rather than "const" to not error for PHP 5.2 and lower
28  */
29 define('_JEXEC', 1);
30 
31 // Run the application - All executable code should be triggered through this file
32 require_once dirname(__FILE__) . '/includes/app.php';

Arguments

0
string(77) "/home/.sites/140/site8842261/web/www.igl-info.at/gesundleben/includes/app.php"