© Ufolep - CNS Sports Aériens & Modélisme CLAP - 2024/2025
Récapitulatif
summary Ici, vous voyez les fichiers sélectionnés pour le téléchargement
Titre
Nom de fichier
Licence
Taille
lettre_sam_23
lettre_sam_23.pdf
None
108.8 KB
%]puLJ%<X gh"1aBy;UAC Attempted to load interface "RequestIdGeneratorInterface" from namespace "DebugBar". 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 interface "RequestIdGeneratorInterface" from namespace "DebugBar".
Did you forget a "use" statement for another namespace?

Exception

Symfony\Component\ErrorHandler\Error\ ClassNotFoundError

  1. namespace DebugBar;
  2. /**
  3.  * Basic request ID generator
  4.  */
  5. class RequestIdGenerator implements RequestIdGeneratorInterface
  6. {
  7.     protected $index 0;
  8.     /**
  9.      * @return string
  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('DebugBar\\RequestIdGenerator') in /datas/yulpa173848/sites/test2025.samclap-ufolep.fr/htdocs/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.     }
  1.      * @return RequestIdGeneratorInterface
  2.      */
  3.     public function getRequestIdGenerator()
  4.     {
  5.         if ($this->requestIdGenerator === null) {
  6.             $this->requestIdGenerator = new RequestIdGenerator();
  7.         }
  8.         return $this->requestIdGenerator;
  9.     }
  10.     /**
  1.      * @return string
  2.      */
  3.     public function getCurrentRequestId()
  4.     {
  5.         if ($this->requestId === null) {
  6.             $this->requestId $this->getRequestIdGenerator()->generate();
  7.         }
  8.         return $this->requestId;
  9.     }
  10.     /**
  1.         }
  2.         // Load language.
  3.         $this->loadLanguage();
  4.         $this->debugBar->addCollector(new InfoCollector($this->params$this->debugBar->getCurrentRequestId()));
  5.         $this->debugBar->addCollector(new UserCollector());
  6.         if (JDEBUG) {
  7.             if ($this->params->get('memory'1)) {
  8.                 $this->debugBar->addCollector(new MemoryCollector($this->params$endMemory));
  1.             foreach ($this->listeners[$event->getName()] as $listener) {
  2.                 if ($event->isStopped()) {
  3.                     return $event;
  4.                 }
  5.                 $listener($event);
  6.             }
  7.         }
  8.         return $event;
  9.     }
  1.             $dispatcher $this->getDispatcher();
  2.         } catch (\UnexpectedValueException $exception) {
  3.             return null;
  4.         }
  5.         return $dispatcher->dispatch($eventName$event ?: new ApplicationEvent($eventName$this));
  6.     }
  7.     /**
  8.      * Method to run the application routines.
  9.      *
AbstractApplication->dispatchEvent('onAfterRespond', object(AfterRespondEvent)) in /datas/yulpa173848/sites/test2025.samclap-ufolep.fr/htdocs/libraries/src/Application/CMSApplication.php (line 349)
  1.         // Send the application response.
  2.         $this->respond();
  3.         // Trigger the onAfterRespond event.
  4.         $this->dispatchEvent(
  5.             'onAfterRespond',
  6.             new AfterRespondEvent('onAfterRespond', ['subject' => $this])
  7.         );
  8.     }
  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/test2025.samclap-ufolep.fr/htdocs/includes/app.php') in /datas/yulpa173848/sites/test2025.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 interface "RequestIdGeneratorInterface" from namespace "DebugBar".
Did you forget a "use" statement for another namespace?

  at /datas/yulpa173848/sites/test2025.samclap-ufolep.fr/htdocs/libraries/vendor/maximebf/debugbar/src/DebugBar/RequestIdGenerator.php:16
  at include()
     (/datas/yulpa173848/sites/test2025.samclap-ufolep.fr/htdocs/libraries/vendor/composer/ClassLoader.php:576)
  at Composer\Autoload\{closure}('/datas/yulpa173848/sites/test2025.samclap-ufolep.fr/htdocs/libraries/vendor/composer/../maximebf/debugbar/src/DebugBar/RequestIdGenerator.php')
     (/datas/yulpa173848/sites/test2025.samclap-ufolep.fr/htdocs/libraries/vendor/composer/ClassLoader.php:427)
  at Composer\Autoload\ClassLoader->loadClass('DebugBar\\RequestIdGenerator')
     (/datas/yulpa173848/sites/test2025.samclap-ufolep.fr/htdocs/libraries/src/Autoload/ClassLoader.php:59)
  at Joomla\CMS\Autoload\ClassLoader->loadClass('DebugBar\\RequestIdGenerator')
     (/datas/yulpa173848/sites/test2025.samclap-ufolep.fr/htdocs/libraries/vendor/maximebf/debugbar/src/DebugBar/DebugBar.php:125)
  at DebugBar\DebugBar->getRequestIdGenerator()
     (/datas/yulpa173848/sites/test2025.samclap-ufolep.fr/htdocs/libraries/vendor/maximebf/debugbar/src/DebugBar/DebugBar.php:138)
  at DebugBar\DebugBar->getCurrentRequestId()
     (/datas/yulpa173848/sites/test2025.samclap-ufolep.fr/htdocs/plugins/system/debug/src/Extension/Debug.php:286)
  at Joomla\Plugin\System\Debug\Extension\Debug->onAfterRespond(object(AfterRespondEvent))
     (/datas/yulpa173848/sites/test2025.samclap-ufolep.fr/htdocs/libraries/vendor/joomla/event/src/Dispatcher.php:454)
  at Joomla\Event\Dispatcher->dispatch('onAfterRespond', object(AfterRespondEvent))
     (/datas/yulpa173848/sites/test2025.samclap-ufolep.fr/htdocs/libraries/vendor/joomla/application/src/AbstractApplication.php:99)
  at Joomla\Application\AbstractApplication->dispatchEvent('onAfterRespond', object(AfterRespondEvent))
     (/datas/yulpa173848/sites/test2025.samclap-ufolep.fr/htdocs/libraries/src/Application/CMSApplication.php:349)
  at Joomla\CMS\Application\CMSApplication->execute()
     (/datas/yulpa173848/sites/test2025.samclap-ufolep.fr/htdocs/includes/app.php:58)
  at require_once('/datas/yulpa173848/sites/test2025.samclap-ufolep.fr/htdocs/includes/app.php')
     (/datas/yulpa173848/sites/test2025.samclap-ufolep.fr/htdocs/index.php:32)