i1i1CHHD$8HD$@HD$HHD$PHD$XHD$(HHHpHXH@PLyLqHHD$ HHN>H;SH HD$(H;H;HFH;GHHH))))fnHfpHHfoftfHHHu"H+HH;foftfHtHH;HHD$(Ht$0Ll$ HEH;EXHH;HcFHcNH H=moziH Hlla/qIM;HD$@HL$HHt$@IIOH;0HHH@HHt$HHH;HcFHcNH=.0 (HcFH HcompHcNH H=atibHcFH Hle; HNH H=msieH IM;HD$PHL$XHt$PIIOH;EHHH@H(Ht$XHH;HcFH=.0; HHH H;HH HwuHt$xH$HHH H;HH HwuHt$xHt$xHHt$xIHH;;HcFHcNH H=indo!HcFH Hws n HNH H=t 10H.0HHH H;HH HtuH$H$HHH !H;HH HtuH$H$HH$I-H H; HcFHcNH H=rideHFH Hnt/8H=.0HHH H;HH)uH$H$HHH H;HH)uH$H$HH$IZH$H;HHH  H;rHHH$IEXH;HNHH;wH mLt$8Ht$8H\$0H} uTH](HHH\$0HEL;HHL+L?HuHD$PHH8HHI;tHH]A]A^A_[H$H;$HH$1H$H$HH; HFH$H)HH;wH$H$HH;$HFH$H HtHH;wHt$xH$HH;!HFHt$xH Hw|HH;wIIOIHD$PHL$XIIOIHD$@HL$HHt$0HWw$Ht$HIHIHA5MAHLIH$Ht$PHvHj Attempted to load class "Uri" from namespace "Joomla\Uri". Did you forget a "use" statement for another namespace? (500 Whoops, looks like something went wrong.)

ClassNotFoundError

HTTP 500 Whoops, looks like something went wrong.

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

Exception

Symfony\Component\ErrorHandler\Error\ ClassNotFoundError

  1.  * for the Joomla Platform to access and manipulate a URI.  Second it obtains the URI of
  2.  * the current executing script from the server regardless of server.
  3.  *
  4.  * @since  1.7.0
  5.  */
  6. class Uri extends \Joomla\Uri\Uri
  7. {
  8.     /**
  9.      * @var    Uri[]  An array of Uri instances.
  10.      * @since  1.7.0
  11.      */
  1.  * @return void
  2.  * @private
  3.  */
  4. function includeFile($file)
  5. {
  6.     include $file;
  7. }
  1.      * @return true|null True if loaded, null otherwise
  2.      */
  3.     public function loadClass($class)
  4.     {
  5.         if ($file $this->findFile($class)) {
  6.             includeFile($file);
  7.             return true;
  8.         }
  9.         return null;
  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.     }
  1.             $uri  Uri::getInstance($siteUri);
  2.             $path $uri->toString(['path']);
  3.         } else {
  4.             // No explicit base URI was set so we need to detect it.
  5.             // Start with the requested URI.
  6.             $uri Uri::getInstance($this->get('uri.request'));
  7.             // If we are working from a CGI SAPI with the 'cgi.fix_pathinfo' directive disabled we use PHP_SELF.
  8.             if (strpos(PHP_SAPI'cgi') !== false && !ini_get('cgi.fix_pathinfo') && !empty($_SERVER['REQUEST_URI'])) {
  9.                 // We aren't expecting PATH_INFO within PHP_SELF so this should work.
  10.                 $path \dirname($_SERVER['PHP_SELF']);
  1.         // Call the constructor as late as possible (it runs `initialise`).
  2.         parent::__construct($config);
  3.         // Set the system URIs.
  4.         $this->loadSystemUris();
  5.     }
  6.     /**
  7.      * Magic method to access properties of the application.
  8.      *
AbstractWebApplication->__construct(object(Input), object(Registry), null, object(Response)) in /datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/src/Application/WebApplication.php (line 106)
  1.     public function __construct(Input $input nullRegistry $config nullWebClient $client nullResponseInterface $response null)
  2.     {
  3.         // Ensure we have a CMS Input object otherwise the DI for \Joomla\CMS\Session\Storage\JoomlaStorage fails
  4.         $input $input ?: new Input();
  5.         parent::__construct($input$config$client$response);
  6.         // Set the execution datetime and timestamp;
  7.         $this->set('execution.datetime'gmdate('Y-m-d H:i:s'));
  8.         $this->set('execution.timestamp'time());
WebApplication->__construct(object(Input), object(Registry), null) in /datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/src/Application/CMSApplication.php (line 175)
  1.     public function __construct(Input $input nullRegistry $config nullWebClient $client nullContainer $container null)
  2.     {
  3.         $container $container ?: new Container();
  4.         $this->setContainer($container);
  5.         parent::__construct($input$config$client);
  6.         // If JDEBUG is defined, load the profiler instance
  7.         if (\defined('JDEBUG') && JDEBUG) {
  8.             $this->profiler Profiler::getInstance('Application');
  9.         }
CMSApplication->__construct(null, object(Registry), null, object(Container)) in /datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/src/Application/SiteApplication.php (line 93)
  1.         // Register the client ID
  2.         $this->clientId 0;
  3.         // Execute the parent constructor
  4.         parent::__construct($input$config$client$container);
  5.     }
  6.     /**
  7.      * Check if the user can access the application
  8.      *
SiteApplication->__construct(null, object(Registry), null, object(Container)) in /datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/src/Service/Provider/Application.php (line 100)
  1.         $container->alias(SiteApplication::class, 'JApplicationSite')
  2.             ->share(
  3.                 'JApplicationSite',
  4.                 function (Container $container) {
  5.                     $app = new SiteApplication(null$container->get('config'), null$container);
  6.                     // The session service provider needs Factory::$application, set it if still null
  7.                     if (Factory::$application === null) {
  8.                         Factory::$application $app;
  9.                     }
  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.      *
Container->get('Joomla\\CMS\\Application\\SiteApplication') in /datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/includes/app.php (line 55)
  1.     ->alias(\Joomla\CMS\Session\Session::class, 'session.web.site')
  2.     ->alias(\Joomla\Session\Session::class, 'session.web.site')
  3.     ->alias(\Joomla\Session\SessionInterface::class, 'session.web.site');
  4. // Instantiate the application.
  5. $app $container->get(\Joomla\CMS\Application\SiteApplication::class);
  6. // Set the application as global app
  7. \Joomla\CMS\Factory::$application $app;
  8. // Execute the application.
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 Trace

ClassNotFoundError
Symfony\Component\ErrorHandler\Error\ClassNotFoundError:
Attempted to load class "Uri" from namespace "Joomla\Uri".
Did you forget a "use" statement for another namespace?

  at /datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/src/Uri/Uri.php:27
  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/Uri/Uri.php')
     (/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/vendor/composer/ClassLoader.php:428)
  at Composer\Autoload\ClassLoader->loadClass('Joomla\\CMS\\Uri\\Uri')
     (/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/src/Autoload/ClassLoader.php:59)
  at Joomla\CMS\Autoload\ClassLoader->loadClass('Joomla\\CMS\\Uri\\Uri')
     (/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/src/Application/WebApplication.php:378)
  at Joomla\CMS\Application\WebApplication->loadSystemUris()
     (/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/vendor/joomla/application/src/AbstractWebApplication.php:213)
  at Joomla\Application\AbstractWebApplication->__construct(object(Input), object(Registry), null, object(Response))
     (/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/src/Application/WebApplication.php:106)
  at Joomla\CMS\Application\WebApplication->__construct(object(Input), object(Registry), null)
     (/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/src/Application/CMSApplication.php:175)
  at Joomla\CMS\Application\CMSApplication->__construct(null, object(Registry), null, object(Container))
     (/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/src/Application/SiteApplication.php:93)
  at Joomla\CMS\Application\SiteApplication->__construct(null, object(Registry), null, object(Container))
     (/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/src/Service/Provider/Application.php:100)
  at Joomla\CMS\Service\Provider\Application->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\\Application\\SiteApplication')
     (/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/includes/app.php:55)
  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)