t-homme-ni-diu-ni-mestre.html#/14,couleur,noir/21,taille,s">T-shirt homme Ni diù Ni mèstre
30,00 €
setPath(trim($path, '/')); } /** * Parse the format of the request * * @param SiteRouter &$router Router object * @param Uri &$uri URI object to process * * @return void * * @since 4.0.0 */ public function parseFormat(&$router, &$uri) { $route = $uri->getPath(); // Identify format if (!(substr($route, -9) === 'index.php' || substr($route, -1) === '/') && $suffix = pathinfo($route, PATHINFO_EXTENSION)) { $uri->setVar('format', $suffix); $route = str_replace('.' . $suffix, '', $route); $uri->setPath($route); } } /** * Convert a sef route to an internal URI * * @param SiteRouter &$router Router object * @param Uri &$uri URI object to process * * @return void * * @since 4.0.0 */ public function parseSefRoute(&$router, &$uri) { $route = $uri->getPath(); // If the URL is empty, we handle this in the non-SEF parse URL if (empty($route)) { return; } // Parse the application route $segments = explode('/', $route); if (\count($segments) > 1 && $segments[0] === 'component') { $uri->setVar('option', 'com_' . $segments[1]); $uri->setVar('Itemid', null); $route = implode('/', \array_slice($segments, 2)); } else { // Get menu items. $items = $this->menu->getItems(['parent_id', 'access'], [1, null]); $lang_tag = $this->app->getLanguage()->getTag(); $found = null; foreach ($segments as $segment) { $matched = false; foreach ($items as $item) { if ( $item->alias == $segment && (!$this->app->getLanguageFilter() || ($item->language === '*' || $item->language === $lang_tag)) ) { $found = $item; $matched = true; $items = $item->getChildren(); break; } } if (!$matched) { break; } } // Menu links are not valid URLs. Find the first parent that isn't a menulink if ($found && $found->type === 'menulink') { while ($found->hasParent() && $found->type === 'menulink') { $found = $found->getParent(); } if ($found->type === 'menulink') { $found = null; } } if (!$found) { $found = $this->menu->getDefault($lang_tag); } else { $route = trim(substr($route, \strlen($found->route)), '/'); } if ($found) { if ($found->type === 'alias') { $newItem = $this->menu->getItem($found->getParams()->get('aliasoptions')); if ($newItem) { $found->query = array_merge($found->query, $newItem->query); $found->component = $newItem->component; } } $uri->setVar('Itemid', $found->id); $uri->setVar('option', $found->component); } } // Set the active menu item if ($uri->getVar('Itemid')) { $this->menu->setActive($uri->getVar('Itemid')); } // Parse the component route if (!empty($route) && $uri->getVar('option')) { $segments = explode('/', $route); if (\count($segments)) { // Handle component route $component = preg_replace('/[^A-Z0-9_\.-]/i', '', $uri->getVar('option')); $crouter = $this->getComponentRouter($component); $uri->setQuery(array_merge($uri->getQuery(true), $crouter->parse($segments))); } $route = implode('/', $segments); } $uri->setPath($route); } /** * Convert a raw route to an internal URI * * @param SiteRouter &$router Router object * @param Uri &$uri URI object to process * * @return void * * @since 4.0.0 */ public function parseRawRoute(&$router, &$uri) { if ($uri->getVar('Itemid')) { $item = $this->menu->getItem($uri->getVar('Itemid')); } else { $item = $this->menu->getDefault($this->app->getLanguage()->getTag()); } if ($item && $item->type === 'alias') { $newItem = $this->menu->getItem($item->getParams()->get('aliasoptions')); if ($newItem) { $item->query = array_merge($item->query, $newItem->query); $item->component = $newItem->component; } } if (\is_object($item)) { // Set the active menu item $this->menu->setActive($item->id); $uri->setVar('Itemid', $item->id); $uri->setQuery(array_merge($item->query, $uri->getQuery(true))); } } /** * Convert limits for pagination * * @param SiteRouter &$router Router object * @param Uri &$uri URI object to process * * @return void * * @since 4.0.0 */ public function parsePaginationData(&$router, &$uri) { // Process the pagination support $start = $uri->getVar('start'); if ($start !== null) { $uri->setVar('limitstart', $uri->getVar('start')); $uri->delVar('start'); } } /** * Do some initial processing for building a URL * * @param SiteRouter &$router Router object * @param Uri &$uri URI object to process * * @return void * * @since 4.0.0 */ public function buildInit(&$router, &$uri) { $itemid = $uri->getVar('Itemid'); // If no Itemid and option given, merge in the current requests data if (!$itemid && !$uri->getVar('option')) { $uri->setQuery(array_merge($this->getVars(), $uri->getQuery(true))); } // If Itemid is given, but no option, set the option from the menu item if ($itemid && !$uri->getVar('option')) { if ($item = $this->menu->getItem($itemid)) { $uri->setVar('option', $item->component); } } } /** * Run the component preprocess method * * @param SiteRouter &$router Router object * @param Uri &$uri URI object to process * * @return void * * @since 4.0.0 */ public function buildComponentPreprocess(&$router, &$uri) { // Get the query data $query = $uri->getQuery(true); if (!isset($query['option'])) { return; } $component = preg_replace('/[^A-Z0-9_\.-]/i', '', $query['option']); $crouter = $this->getComponentRouter($component); $query = $crouter->preprocess($query); // Make sure any menu vars are used if no others are specified if ( isset($query['Itemid']) && (\count($query) === 2 || (\count($query) === 3 && isset($query['lang']))) ) { // Get the active menu item $item = $this->menu->getItem($query['Itemid']); if ($item !== null) { $query = array_merge($item->query, $query); } } $uri->setQuery($query); } /** * Build the SEF route * * @param SiteRouter &$router Router object * @param Uri &$uri URI object to process * * @return void * * @since 4.0.0 */ public function buildSefRoute(&$router, &$uri) { // Get the query data $query = $uri->getQuery(true); if (!isset($query['option'])) { return; } // Get Menu Item $item = empty($query['Itemid']) ? null : $this->menu->getItem($query['Itemid']); // Build the component route $component = preg_replace('/[^A-Z0-9_\.-]/i', '', $query['option']); $crouter = $this->getComponentRouter($component); $parts = $crouter->build($query); $tmp = trim(implode('/', $parts)); // Build the application route if ($item !== null && $query['option'] === $item->component) { if (!$item->home) { $tmp = $tmp ? $item->route . '/' . $tmp : $item->route; } unset($query['Itemid']); } else { $tmp = 'component/' . substr($query['option'], 4) . '/' . $tmp; } // Get the route if ($tmp) { $uri->setPath($uri->getPath() . '/' . $tmp); } // Unset unneeded query information unset($query['option']); // Set query again in the URI $uri->setQuery($query); } /** * Convert limits for pagination * * @param SiteRouter &$router Router object * @param Uri &$uri URI object to process * * @return void * * @since 4.0.0 */ public function buildPaginationData(&$router, &$uri) { $limitstart = $uri->getVar('limitstart'); if ($limitstart !== null) { $uri->setVar('start', (int) $uri->getVar('limitstart')); $uri->delVar('limitstart'); } } /** * Build the format of the request * * @param SiteRouter &$router Router object * @param Uri &$uri URI object to process * * @return void * * @since 4.0.0 */ public function buildFormat(&$router, &$uri) { $route = $uri->getPath(); // Identify format if (!(substr($route, -9) === 'index.php' || substr($route, -1) === '/') && $format = $uri->getVar('format', 'html')) { $route .= '.' . $format; $uri->setPath($route); $uri->delVar('format'); } } /** * Create a uri based on a full or partial URL string * * @param SiteRouter &$router Router object * @param Uri &$uri URI object to process * * @return void * * @since 4.0.0 */ public function buildRewrite(&$router, &$uri) { // Get the path data $route = $uri->getPath(); // Transform the route if ($route === 'index.php') { $route = ''; } else { $route = str_replace('index.php/', '', $route); } $uri->setPath($route); } /** * Add the basepath to the URI * * @param SiteRouter &$router Router object * @param Uri &$uri URI object to process * * @return void * * @since 4.0.0 */ public function buildBase(&$router, &$uri) { // Add frontend basepath to the uri $uri->setPath(Uri::root(true) . '/' . $uri->getPath()); } /** * Get component router * * @param string $component Name of the component including com_ prefix * * @return RouterInterface Component router * * @since 3.3 */ public function getComponentRouter($component) { if (!isset($this->componentRouters[$component])) { $componentInstance = $this->app->bootComponent($component); if ($componentInstance instanceof RouterServiceInterface) { $this->componentRouters[$component] = $componentInstance->createRouter($this->app, $this->menu); } if (!isset($this->componentRouters[$component])) { $this->componentRouters[$component] = new RouterLegacy(ucfirst(substr($component, 4))); } } return $this->componentRouters[$component]; } /** * Set a router for a component * * @param string $component Component name with com_ prefix * @param object $router Component router * * @return boolean True if the router was accepted, false if not * * @since 3.3 */ public function setComponentRouter($component, $router) { $reflection = new \ReflectionClass($router); if (\in_array('Joomla\\CMS\\Component\\Router\\RouterInterface', $reflection->getInterfaceNames())) { $this->componentRouters[$component] = $router; return true; } else { return false; } } }
Warning: Class "Joomla\CMS\Router\SiteRouter" not found in /datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/loader.php on line 576
Attempted to load class "SiteRouter" from namespace "Joomla\CMS\Router". Did you forget a "use" statement for another namespace? (500 Whoops, looks like something went wrong.)

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

Exceptions 2

Symfony\Component\ErrorHandler\Error\ ClassNotFoundError

  1.         $container->alias('SiteRouter'SiteRouter::class)
  2.             ->alias('JRouterSite'SiteRouter::class)
  3.             ->share(
  4.                 SiteRouter::class,
  5.                 function (Container $container) {
  6.                     return new SiteRouter($container->get(SiteApplication::class));
  7.                 },
  8.                 true
  9.             );
  10.         $container->alias('AdministratorRouter'AdministratorRouter::class)
  1.         if ($this->isShared())
  2.         {
  3.             if ($this->instance === null)
  4.             {
  5.                 $this->instance $callable($this->container);
  6.             }
  7.             return $this->instance;
  8.         }
  1.             }
  2.             throw new KeyNotFoundException(sprintf("Resource '%s' has not been registered with the container."$resourceName));
  3.         }
  4.         return $this->resources[$key]->getInstance();
  5.     }
  6.     /**
  7.      * Check if specified resource exists.
  8.      *
  1.         if (!isset($this->resources[$key]))
  2.         {
  3.             if ($this->parent instanceof ContainerInterface && $this->parent->has($key))
  4.             {
  5.                 return $this->parent->get($key);
  6.             }
  7.             throw new KeyNotFoundException(sprintf("Resource '%s' has not been registered with the container."$resourceName));
  8.         }
  1.                 }
  2.                 $factory->setFormFactory($container->get(FormFactoryInterface::class));
  3.                 $factory->setDispatcher($container->get(DispatcherInterface::class));
  4.                 $factory->setDatabase($container->get(DatabaseInterface::class));
  5.                 $factory->setSiteRouter($container->get(SiteRouter::class));
  6.                 $factory->setCacheControllerFactory($container->get(CacheControllerFactoryInterface::class));
  7.                 $factory->setUserFactory($container->get(UserFactoryInterface::class));
  8.                 $factory->setMailerFactory($container->get(MailerFactoryInterface::class));
  9.                 return $factory;
  1.             }
  2.             return $this->instance;
  3.         }
  4.         return $callable($this->container);
  5.     }
  6.     /**
  7.      * Get the factory
  8.      *
  1.             }
  2.             throw new KeyNotFoundException(sprintf("Resource '%s' has not been registered with the container."$resourceName));
  3.         }
  4.         return $this->resources[$key]->getInstance();
  5.     }
  6.     /**
  7.      * Check if specified resource exists.
  8.      *
  1.     public function register(Container $container)
  2.     {
  3.         $container->set(
  4.             ComponentDispatcherFactoryInterface::class,
  5.             function (Container $container) {
  6.                 return new \Joomla\CMS\Dispatcher\ComponentDispatcherFactory($this->namespace$container->get(MVCFactoryInterface::class));
  7.             }
  8.         );
  9.     }
  10. }
  1.             }
  2.             return $this->instance;
  3.         }
  4.         return $callable($this->container);
  5.     }
  6.     /**
  7.      * Get the factory
  8.      *
  1.             }
  2.             throw new KeyNotFoundException(sprintf("Resource '%s' has not been registered with the container."$resourceName));
  3.         }
  4.         return $this->resources[$key]->getInstance();
  5.     }
  6.     /**
  7.      * Check if specified resource exists.
  8.      *
Container->get('Joomla\\CMS\\Dispatcher\\ComponentDispatcherFactoryInterface') in /datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/administrator/components/com_templates/services/provider.php (line 46)
  1.         $container->registerServiceProvider(new ComponentDispatcherFactory('\\Joomla\\Component\\Templates'));
  2.         $container->set(
  3.             ComponentInterface::class,
  4.             function (Container $container) {
  5.                 $component = new TemplatesComponent($container->get(ComponentDispatcherFactoryInterface::class));
  6.                 $component->setMVCFactory($container->get(MVCFactoryInterface::class));
  7.                 $component->setRegistry($container->get(Registry::class));
  8.                 return $component;
  1.             }
  2.             return $this->instance;
  3.         }
  4.         return $callable($this->container);
  5.     }
  6.     /**
  7.      * Get the factory
  8.      *
  1.             }
  2.             throw new KeyNotFoundException(sprintf("Resource '%s' has not been registered with the container."$resourceName));
  3.         }
  4.         return $this->resources[$key]->getInstance();
  5.     }
  6.     /**
  7.      * Check if specified resource exists.
  8.      *
Container->get('Joomla\\CMS\\Extension\\ComponentInterface') in /datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/src/Extension/ExtensionManagerTrait.php (line 177)
  1.                     'container'     => $container,
  2.                 ]
  3.             )
  4.         );
  5.         $extension $container->get($type);
  6.         if ($extension instanceof BootableExtensionInterface) {
  7.             $extension->boot($container);
  8.         }
CMSApplication->loadExtension('Joomla\\CMS\\Extension\\ComponentInterface', 'templates', '/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/administrator/components/com_templates') in /datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/src/Extension/ExtensionManagerTrait.php (line 51)
  1.         $component str_starts_with($component'com_') ? substr($component4) : $component;
  2.         // Path to look for services
  3.         $path JPATH_ADMINISTRATOR '/components/com_' $component;
  4.         return $this->loadExtension(ComponentInterface::class, $component$path);
  5.     }
  6.     /**
  7.      * Boots the module with the given name.
  8.      *
  1.         $cacheId 'templates0' $tag;
  2.         if ($cache->contains($cacheId)) {
  3.             $templates $cache->get($cacheId);
  4.         } else {
  5.             $templates $this->bootComponent('templates')->getMVCFactory()
  6.                 ->createModel('Style''Administrator')->getSiteTemplates();
  7.             foreach ($templates as &$template) {
  8.                 // Create home element
  9.                 if ($template->home == && !isset($template_home) || $this->getLanguageFilter() && $template->home == $tag) {
  1.     public function render(\Throwable $error): string
  2.     {
  3.         $app Factory::getApplication();
  4.         // Get the current template from the application
  5.         $template $app->getTemplate(true);
  6.         // Push the error object into the document
  7.         $this->getDocument()->setError($error);
  8.         // Add registry file for the template asset
  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('/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/includes/app.php') in /datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/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';

Error

Class "Joomla\CMS\Router\SiteRouter" not found

  1.         $container->alias('SiteRouter'SiteRouter::class)
  2.             ->alias('JRouterSite'SiteRouter::class)
  3.             ->share(
  4.                 SiteRouter::class,
  5.                 function (Container $container) {
  6.                     return new SiteRouter($container->get(SiteApplication::class));
  7.                 },
  8.                 true
  9.             );
  10.         $container->alias('AdministratorRouter'AdministratorRouter::class)
  1.         if ($this->isShared())
  2.         {
  3.             if ($this->instance === null)
  4.             {
  5.                 $this->instance $callable($this->container);
  6.             }
  7.             return $this->instance;
  8.         }
  1.             }
  2.             throw new KeyNotFoundException(sprintf("Resource '%s' has not been registered with the container."$resourceName));
  3.         }
  4.         return $this->resources[$key]->getInstance();
  5.     }
  6.     /**
  7.      * Check if specified resource exists.
  8.      *
  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('/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/includes/app.php') in /datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/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] ClassNotFoundError
Symfony\Component\ErrorHandler\Error\ClassNotFoundError:
Attempted to load class "SiteRouter" from namespace "Joomla\CMS\Router".
Did you forget a "use" statement for another namespace?

  at /datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/src/Service/Provider/Router.php:47
  at Joomla\CMS\Service\Provider\Router->Joomla\CMS\Service\Provider\{closure}(object(Container))
     (/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/vendor/joomla/di/src/ContainerResource.php:176)
  at Joomla\DI\ContainerResource->getInstance()
     (/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/vendor/joomla/di/src/Container.php:96)
  at Joomla\DI\Container->get('Joomla\\CMS\\Router\\SiteRouter')
     (/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/vendor/joomla/di/src/Container.php:90)
  at Joomla\DI\Container->get('Joomla\\CMS\\Router\\SiteRouter')
     (/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/src/Extension/Service/Provider/MVCFactory.php:79)
  at Joomla\CMS\Extension\Service\Provider\MVCFactory->Joomla\CMS\Extension\Service\Provider\{closure}(object(Container))
     (/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/vendor/joomla/di/src/ContainerResource.php:182)
  at Joomla\DI\ContainerResource->getInstance()
     (/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/vendor/joomla/di/src/Container.php:96)
  at Joomla\DI\Container->get('Joomla\\CMS\\MVC\\Factory\\MVCFactoryInterface')
     (/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/src/Extension/Service/Provider/ComponentDispatcherFactory.php:63)
  at Joomla\CMS\Extension\Service\Provider\ComponentDispatcherFactory->Joomla\CMS\Extension\Service\Provider\{closure}(object(Container))
     (/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/vendor/joomla/di/src/ContainerResource.php:182)
  at Joomla\DI\ContainerResource->getInstance()
     (/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/vendor/joomla/di/src/Container.php:96)
  at Joomla\DI\Container->get('Joomla\\CMS\\Dispatcher\\ComponentDispatcherFactoryInterface')
     (/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/administrator/components/com_templates/services/provider.php:46)
  at Joomla\DI\ServiceProviderInterface@anonymous/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/administrator/components/com_templates/services/provider.php:28$86->{closure}(object(Container))
     (/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/vendor/joomla/di/src/ContainerResource.php:182)
  at Joomla\DI\ContainerResource->getInstance()
     (/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/vendor/joomla/di/src/Container.php:96)
  at Joomla\DI\Container->get('Joomla\\CMS\\Extension\\ComponentInterface')
     (/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/src/Extension/ExtensionManagerTrait.php:177)
  at Joomla\CMS\Application\CMSApplication->loadExtension('Joomla\\CMS\\Extension\\ComponentInterface', 'templates', '/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/administrator/components/com_templates')
     (/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/src/Extension/ExtensionManagerTrait.php:51)
  at Joomla\CMS\Application\CMSApplication->bootComponent('templates')
     (/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/src/Application/SiteApplication.php:452)
  at Joomla\CMS\Application\SiteApplication->getTemplate(true)
     (/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/src/Error/Renderer/HtmlRenderer.php:50)
  at Joomla\CMS\Error\Renderer\HtmlRenderer->render(object(Error))
     (/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/src/Exception/ExceptionHandler.php:126)
  at Joomla\CMS\Exception\ExceptionHandler::render(object(Error))
     (/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/src/Exception/ExceptionHandler.php:72)
  at Joomla\CMS\Exception\ExceptionHandler::handleException(object(Error))
     (/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/src/Application/CMSApplication.php:322)
  at Joomla\CMS\Application\CMSApplication->execute()
     (/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/includes/app.php:61)
  at require_once('/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/includes/app.php')
     (/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/index.php:32)                
[1/2] Error
Error:
Class "Joomla\CMS\Router\SiteRouter" not found

  at /datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/src/Service/Provider/Router.php:47
  at Joomla\CMS\Service\Provider\Router->Joomla\CMS\Service\Provider\{closure}(object(Container))
     (/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/vendor/joomla/di/src/ContainerResource.php:176)
  at Joomla\DI\ContainerResource->getInstance()
     (/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/vendor/joomla/di/src/Container.php:96)
  at Joomla\DI\Container->get('Joomla\\CMS\\Router\\SiteRouter')
     (/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/src/Application/SiteApplication.php:746)
  at Joomla\CMS\Application\SiteApplication->route()
     (/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/src/Application/SiteApplication.php:232)
  at Joomla\CMS\Application\SiteApplication->doExecute()
     (/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/src/Application/CMSApplication.php:293)
  at Joomla\CMS\Application\CMSApplication->execute()
     (/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/includes/app.php:61)
  at require_once('/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/includes/app.php')
     (/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/index.php:32)