( fa-heart ! sort_order ! xI1 Xv\ @s1 statistic-code="later"> ! P PPS_LANG_CODE ! p getModule K1 ! getTabUrl ! gettaburl K1 ! getModule ! FM1 f="%s" target="_blank" class="button button-primary" data-statistic-code="hide">our other Plugins! Years of experience in WordPress plugins developers made those list unbreakable! ! PPS_LANG_CODE ! framepps K1 ! getmodule K1 ! ( getTabUrl K1 ! H enb_stats_msg g ( ! K1 sg ! show_after 1 ) enb_promo_link_msg A P AK1 DK1 AK1 DK1 AK1 DK1 A x1 x1 KJ1 ! getModule ! @ getModule K1 ! K1 ! framePps K1 ! framepps K1 ! getmodule K1 ! hide_ pK1 ! getModule ! getModule K1 ! @ framePps ! ` getModule ! getModule K1 q K1 w Uw K1 w 1 8K1
w 1 XK1
W^ -cw1 xK1
W^ 9f1 +21 w CS 1 p%/21 w E
S 1 ,21 w }l1 1 K1 w 1 ,21 w w1 K1 w 1 K1 w Tq 1 w 1 K1
w 1 K1 w ^/1cZ71 [K1 w 1 HK1
w PK1
W^ -cw1 pK1
W^ 9f1 +21 w CS 1 p%/21 w E
S 1 K1 w 1 ,21 w w1 K1 w 1 K1 w Tq 1 c w 1 (K1
w 1 1 ! 0 ! P subDestList st ! p subDestList ! 1 8 ! h m'1 h ! %A1 ! pps_lang_code ) @ showFeaturedPluginsPage ! addSubDestList ; K1 AK1 1 HPK1 K1 @1 K1 H 1 PQH1 m D1 / ( (1 [() getOverviewTabContent q .+N> K1 K1 HK1 K1 xK1 getoverviewtabcontent x q NH1 ntent ) ( getOverviewTabContent ) P getoverviewtabcontent ! 1 omepage 9 showAdditionalmainAdminShowOnOptions 9 1 v921 monitor ! xxK1 - PRO ! ( PPS_LANG_CODE ! H PPS_LANG_CODE ! h pps_lang_code ! require_confirm ! require_confirm ! sendgrid 0 ! 5M1 ! PPS_LANG_CODE ! @ pps_lang_code ) ` verticalresponse ! require_confirm ! K1 K1 e - PRO ! ( PPS_LANG_CODE ! H PPS_LANG_CODE ! h pps_lang_code ! X get_response ( ! K1 (1 $this->setVars($uri->getQuery(true));
return $this->getVars();
}
return $uri->getQuery(true);
}
/**
* Function to convert an internal URI to a route
*
* @param string|array|Uri $url The internal URL or an associative array
*
* @return Uri The absolute search engine friendly URL object
*
* @since 1.5
*/
public function build($url)
{
$key = md5(serialize($url));
if (isset($this->cache[$key])) {
return clone $this->cache[$key];
}
if ($url instanceof Uri) {
$uri = $url;
} else {
$uri = $this->createUri($url);
}
// Do the preprocess stage of the URL build process
$this->processBuildRules($uri, self::PROCESS_BEFORE);
// Do the main stage of the URL build process
$this->processBuildRules($uri);
// Do the postprocess stage of the URL build process
$this->processBuildRules($uri, self::PROCESS_AFTER);
$this->cache[$key] = clone $uri;
return $uri;
}
/**
* Set a router variable, creating it if it doesn't exist
*
* @param string $key The name of the variable
* @param mixed $value The value of the variable
* @param boolean $create If True, the variable will be created if it doesn't exist yet
*
* @return void
*
* @since 1.5
*/
public function setVar($key, $value, $create = true)
{
if ($create || \array_key_exists($key, $this->vars)) {
$this->vars[$key] = $value;
}
}
/**
* Set the router variable array
*
* @param array $vars An associative array with variables
* @param boolean $merge If True, the array will be merged instead of overwritten
*
* @return void
*
* @since 1.5
*/
public function setVars($vars = [], $merge = true)
{
if ($merge) {
$this->vars = array_merge($this->vars, $vars);
} else {
$this->vars = $vars;
}
}
/**
* Get a router variable
*
* @param string $key The name of the variable
*
* @return mixed Value of the variable
*
* @since 1.5
*/
public function getVar($key)
{
$result = null;
if (isset($this->vars[$key])) {
$result = $this->vars[$key];
}
return $result;
}
/**
* Get the router variable array
*
* @return array An associative array of router variables
*
* @since 1.5
*/
public function getVars()
{
return $this->vars;
}
/**
* Attach a build rule
*
* @param callable $callback The function to be called
* @param string $stage The stage of the build process that
* this should be added to. Possible values:
* 'preprocess', '' for the main build process,
* 'postprocess'
*
* @return void
*
* @since 1.5
*/
public function attachBuildRule(callable $callback, $stage = self::PROCESS_DURING)
{
if (!\array_key_exists('build' . $stage, $this->rules)) {
throw new \InvalidArgumentException(sprintf('The %s stage is not registered. (%s)', $stage, __METHOD__));
}
$this->rules['build' . $stage][] = $callback;
}
/**
* Attach a parse rule
*
* @param callable $callback The function to be called.
* @param string $stage The stage of the parse process that
* this should be added to. Possible values:
* 'preprocess', '' for the main parse process,
* 'postprocess'
*
* @return void
*
* @since 1.5
*/
public function attachParseRule(callable $callback, $stage = self::PROCESS_DURING)
{
if (!\array_key_exists('parse' . $stage, $this->rules)) {
throw new \InvalidArgumentException(sprintf('The %s stage is not registered. (%s)', $stage, __METHOD__));
}
$this->rules['parse' . $stage][] = $callback;
}
/**
* Remove a rule
*
* @param string $type Type of rule to remove (parse or build)
* @param callable $rule The rule to be removed.
* @param string $stage The stage of the parse process that
* this should be added to. Possible values:
* 'preprocess', '' for the main parse process,
* 'postprocess'
*
* @return boolean Was a rule removed?
*
* @since 4.0.0
* @throws \InvalidArgumentException
*/
public function detachRule($type, $rule, $stage = self::PROCESS_DURING)
{
if (!\in_array($type, ['parse', 'build'])) {
throw new \InvalidArgumentException(sprintf('The %s type is not supported. (%s)', $type, __METHOD__));
}
if (!\array_key_exists($type . $stage, $this->rules)) {
throw new \InvalidArgumentException(sprintf('The %s stage is not registered. (%s)', $stage, __METHOD__));
}
foreach ($this->rules[$type . $stage] as $id => $r) {
if ($r == $rule) {
unset($this->rules[$type . $stage][$id]);
return true;
}
}
return false;
}
/**
* Get all currently attached rules
*
* @return array All currently attached rules in an array
*
* @since 4.0.0
*/
public function getRules()
{
return $this->rules;
}
/**
* Process the parsed router variables based on custom defined rules
*
* @param \Joomla\CMS\Uri\Uri &$uri The URI to parse
* @param string $stage The stage that should be processed.
* Possible values: 'preprocess', 'postprocess'
* and '' for the main parse stage
*
* @return void
*
* @since 3.2
*/
protected function processParseRules(&$uri, $stage = self::PROCESS_DURING)
{
if (!\array_key_exists('parse' . $stage, $this->rules)) {
throw new \InvalidArgumentException(sprintf('The %s stage is not registered. (%s)', $stage, __METHOD__));
}
foreach ($this->rules['parse' . $stage] as $rule) {
$rule($this, $uri);
}
}
/**
* Process the build uri query data based on custom defined rules
*
* @param \Joomla\CMS\Uri\Uri &$uri The URI
* @param string $stage The stage that should be processed.
* Possible values: 'preprocess', 'postprocess'
* and '' for the main build stage
*
* @return void
*
* @since 3.2
*/
protected function processBuildRules(&$uri, $stage = self::PROCESS_DURING)
{
if (!\array_key_exists('build' . $stage, $this->rules)) {
throw new \InvalidArgumentException(sprintf('The %s stage is not registered. (%s)', $stage, __METHOD__));
}
foreach ($this->rules['build' . $stage] as $rule) {
\call_user_func_array($rule, [&$this, &$uri]);
}
}
/**
* Create a uri based on a full or partial URL string
*
* @param string $url The URI or an associative array
*
* @return Uri
*
* @since 3.2
*/
protected function createUri($url)
{
if (!\is_array($url) && substr($url, 0, 1) !== '&') {
return new Uri($url);
}
$uri = new Uri('index.php');
if (\is_string($url)) {
$vars = [];
if (strpos($url, '&') !== false) {
$url = str_replace('&', '&', $url);
}
parse_str($url, $vars);
} else {
$vars = $url;
}
$vars = array_merge($this->getVars(), $vars);
foreach ($vars as $key => $var) {
if ($var == '') {
unset($vars[$key]);
}
}
$uri->setQuery($vars);
return $uri;
}
}
Warning: Class "Joomla\CMS\Router\Router" not found in /datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/loader.php on line 576
/** * Class to create and parse routes for the site application * * @since 1.5 */class SiteRouter extends Router{ /** * Component-router objects * * @var array * @return void * @private */function includeFile($file){ include $file;} * @return true|null True if loaded, null otherwise */ public function loadClass($class) { if ($file = $this->findFile($class)) { includeFile($file); return true; } return null; * * @since 3.4 */ public function loadClass($class) { if ($result = $this->loader->loadClass($class)) { \JLoader::applyAliasFor($class); } return $result; } $container->alias('SiteRouter', SiteRouter::class) ->alias('JRouterSite', SiteRouter::class) ->share( SiteRouter::class, function (Container $container) { return new SiteRouter($container->get(SiteApplication::class)); }, true ); $container->alias('AdministratorRouter', AdministratorRouter::class) if ($this->isShared()) { if ($this->instance === null) { $this->instance = $callable($this->container); } return $this->instance; } } throw new KeyNotFoundException(sprintf("Resource '%s' has not been registered with the container.", $resourceName)); } return $this->resources[$key]->getInstance(); } /** * Check if specified resource exists. * if (!isset($this->resources[$key])) { if ($this->parent instanceof ContainerInterface && $this->parent->has($key)) { return $this->parent->get($key); } throw new KeyNotFoundException(sprintf("Resource '%s' has not been registered with the container.", $resourceName)); } } $factory->setFormFactory($container->get(FormFactoryInterface::class)); $factory->setDispatcher($container->get(DispatcherInterface::class)); $factory->setDatabase($container->get(DatabaseInterface::class)); $factory->setSiteRouter($container->get(SiteRouter::class)); $factory->setCacheControllerFactory($container->get(CacheControllerFactoryInterface::class)); $factory->setUserFactory($container->get(UserFactoryInterface::class)); $factory->setMailerFactory($container->get(MailerFactoryInterface::class)); return $factory; } return $this->instance; } return $callable($this->container); } /** * Get the factory * } throw new KeyNotFoundException(sprintf("Resource '%s' has not been registered with the container.", $resourceName)); } return $this->resources[$key]->getInstance(); } /** * Check if specified resource exists. * public function register(Container $container) { $container->set( ComponentDispatcherFactoryInterface::class, function (Container $container) { return new \Joomla\CMS\Dispatcher\ComponentDispatcherFactory($this->namespace, $container->get(MVCFactoryInterface::class)); } ); }} } return $this->instance; } return $callable($this->container); } /** * Get the factory * } throw new KeyNotFoundException(sprintf("Resource '%s' has not been registered with the container.", $resourceName)); } return $this->resources[$key]->getInstance(); } /** * Check if specified resource exists. * $container->registerServiceProvider(new ComponentDispatcherFactory('\\Joomla\\Component\\Templates')); $container->set( ComponentInterface::class, function (Container $container) { $component = new TemplatesComponent($container->get(ComponentDispatcherFactoryInterface::class)); $component->setMVCFactory($container->get(MVCFactoryInterface::class)); $component->setRegistry($container->get(Registry::class)); return $component; } return $this->instance; } return $callable($this->container); } /** * Get the factory * } throw new KeyNotFoundException(sprintf("Resource '%s' has not been registered with the container.", $resourceName)); } return $this->resources[$key]->getInstance(); } /** * Check if specified resource exists. * 'container' => $container, ] ) ); $extension = $container->get($type); if ($extension instanceof BootableExtensionInterface) { $extension->boot($container); } $component = str_starts_with($component, 'com_') ? substr($component, 4) : $component; // Path to look for services $path = JPATH_ADMINISTRATOR . '/components/com_' . $component; return $this->loadExtension(ComponentInterface::class, $component, $path); } /** * Boots the module with the given name. * $cacheId = 'templates0' . $tag; if ($cache->contains($cacheId)) { $templates = $cache->get($cacheId); } else { $templates = $this->bootComponent('templates')->getMVCFactory() ->createModel('Style', 'Administrator')->getSiteTemplates(); foreach ($templates as &$template) { // Create home element if ($template->home == 1 && !isset($template_home) || $this->getLanguageFilter() && $template->home == $tag) { public function render(\Throwable $error): string { $app = Factory::getApplication(); // Get the current template from the application $template = $app->getTemplate(true); // Push the error object into the document $this->getDocument()->setError($error); // Add registry file for the template asset // Reset the document object in the factory, this gives us a clean slate and lets everything render properly Factory::$document = $renderer->getDocument(); Factory::getApplication()->loadDocument(Factory::$document); $data = $renderer->render($error); // If nothing was rendered, just use the message from the Exception if (empty($data)) { $data = $error->getMessage(); } * @since 3.10.0 */ public static function handleException(\Throwable $error) { static::logException($error); static::render($error); } /** * Render the error page based on an exception. * ); // Trigger the onError event. $this->triggerEvent('onError', $event); ExceptionHandler::handleException($event->getError()); } // Trigger the onBeforeRespond event. $this->getDispatcher()->dispatch('onBeforeRespond');// Set the application as global app\Joomla\CMS\Factory::$application = $app;// Execute the application.$app->execute(); * define() is used rather than "const" to not error for PHP 5.2 and lower */define('_JEXEC', 1);// Run the application - All executable code should be triggered through this filerequire_once dirname(__FILE__) . '/includes/app.php';/** * Class to create and parse routes for the site application * * @since 1.5 */class SiteRouter extends Router{ /** * Component-router objects * * @var array * @return void * @private */function includeFile($file){ include $file;} * @return true|null True if loaded, null otherwise */ public function loadClass($class) { if ($file = $this->findFile($class)) { includeFile($file); return true; } return null; * * @since 3.4 */ public function loadClass($class) { if ($result = $this->loader->loadClass($class)) { \JLoader::applyAliasFor($class); } return $result; } $container->alias('SiteRouter', SiteRouter::class) ->alias('JRouterSite', SiteRouter::class) ->share( SiteRouter::class, function (Container $container) { return new SiteRouter($container->get(SiteApplication::class)); }, true ); $container->alias('AdministratorRouter', AdministratorRouter::class) if ($this->isShared()) { if ($this->instance === null) { $this->instance = $callable($this->container); } return $this->instance; } } throw new KeyNotFoundException(sprintf("Resource '%s' has not been registered with the container.", $resourceName)); } return $this->resources[$key]->getInstance(); } /** * Check if specified resource exists. * // Get the full request URI. $uri = clone Uri::getInstance(); // It is not possible to inject the SiteRouter as it requires a SiteApplication // and we would end in an infinite loop $result = $this->getContainer()->get(SiteRouter::class)->parse($uri, true); $active = $this->getMenu()->getActive(); if ( $active !== null // Mark afterInitialise in the profiler. JDEBUG ? $this->profiler->mark('afterInitialise') : null; // Route the application $this->route(); // Mark afterRoute in the profiler. JDEBUG ? $this->profiler->mark('afterRoute') : null; if (!$this->isHandlingMultiFactorAuthentication()) { $this->sanityCheckSystemVariables(); $this->setupLogging(); $this->createExtensionNamespaceMap(); // Perform application routines. $this->doExecute(); // If we have an application document object, render it. if ($this->document instanceof \Joomla\CMS\Document\Document) { // Render the application output. $this->render();// Set the application as global app\Joomla\CMS\Factory::$application = $app;// Execute the application.$app->execute(); * define() is used rather than "const" to not error for PHP 5.2 and lower */define('_JEXEC', 1);// Run the application - All executable code should be triggered through this filerequire_once dirname(__FILE__) . '/includes/app.php';|
[2/2]
ClassNotFoundError
|
|---|
Symfony\Component\ErrorHandler\Error\ClassNotFoundError:
Attempted to load class "Router" 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/Router/SiteRouter.php:30
at include()
(/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/vendor/composer/ClassLoader.php:571)
at Composer\Autoload\includeFile('/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/vendor/composer/../../../libraries/src/Router/SiteRouter.php')
(/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/vendor/composer/ClassLoader.php:428)
at Composer\Autoload\ClassLoader->loadClass('Joomla\\CMS\\Router\\SiteRouter')
(/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/src/Autoload/ClassLoader.php:59)
at Joomla\CMS\Autoload\ClassLoader->loadClass('Joomla\\CMS\\Router\\SiteRouter')
(/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$7e->{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\Router" not found
at /datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/src/Router/SiteRouter.php:30
at include()
(/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/vendor/composer/ClassLoader.php:571)
at Composer\Autoload\includeFile('/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/vendor/composer/../../../libraries/src/Router/SiteRouter.php')
(/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/vendor/composer/ClassLoader.php:428)
at Composer\Autoload\ClassLoader->loadClass('Joomla\\CMS\\Router\\SiteRouter')
(/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/src/Autoload/ClassLoader.php:59)
at Joomla\CMS\Autoload\ClassLoader->loadClass('Joomla\\CMS\\Router\\SiteRouter')
(/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)
|