© Ufolep - CNS Sports Aériens & Modélisme CLAP - 2023/2024
Récapitulatif
summary Ici, vous voyez les fichiers sélectionnés pour le téléchargement
Titre
Nom de fichier
Licence
Taille
indoor-ardennes 2024
Invitation_indoor_ardennes_2024.pdf
None
1003.68 KB
(6`S`' 07Zp curlhandle@d(0 (6PLm(6(6T`'01curlmultihandle`(0 (6PLm(6(6 T`'0e`curlsharehandleqF 0PLm@(6``'q0 qFT`'P ߢ>bB@ q؎8|@ o_$"َ|@ LC1H|@ {d$8}@@ X7ˆ}@v@B:!B:!p0n7$׎ getFilename1q؎ getfilenamepH PyFT`'0: @ 0/7K׎ getMimeType1o_$"َ getmimetypepFвT`'0@ 0~ ~$getPostFilename1LC1HgetpostfilenamePRFT`'0@ 0^;r# setMimeType1n{d$ setmimetype0 FT`'PN= @ @0>1setPostFilename1.X7setpostfilenamepSFT`'P~@ ltVarDumper; } /** * Sets the variable dumper instance used by this collector * * @param DebugBarVarDumper $varDumper * @return $this */ public function setVarDumper(DebugBarVarDumper $varDumper) { $this->varDumper = $varDumper; return $this; } /** * Gets the variable dumper instance used by this collector; note that collectors using this * instance need to be sure to return the static assets provided by the variable dumper. * * @return DebugBarVarDumper */ public function getVarDumper() { if ($this->varDumper === null) { $this->varDumper = self::getDefaultVarDumper(); } return $this->varDumper; } /** * @deprecated */ public function formatVar($var) { return $this->getDataFormatter()->formatVar($var); } /** * @deprecated */ public function formatDuration($seconds) { return $this->getDataFormatter()->formatDuration($seconds); } /** * @deprecated */ public function formatBytes($size, $precision = 2) { return $this->getDataFormatter()->formatBytes($size, $precision); } /** * @return string */ public function getXdebugLinkTemplate() { if (empty($this->xdebugLinkTemplate) && !empty(ini_get('xdebug.file_link_format'))) { $this->xdebugLinkTemplate = ini_get('xdebug.file_link_format'); } return $this->xdebugLinkTemplate; } /** * @param string $editor */ public function setEditorLinkTemplate($editor) { $editorLinkTemplates = array( 'sublime' => 'subl://open?url=file://%f&line=%l', 'textmate' => 'txmt://open?url=file://%f&line=%l', 'emacs' => 'emacs://open?url=file://%f&line=%l', 'macvim' => 'mvim://open/?url=file://%f&line=%l', 'phpstorm' => 'phpstorm://open?file=%f&line=%l', 'phpstorm-remote' => 'javascript:let r=new XMLHttpRequest;' . 'r.open("get","http://localhost:63342/api/file/%f:%l");r.send()', 'idea' => 'idea://open?file=%f&line=%l', 'idea-remote' => 'javascript:let r=new XMLHttpRequest;' . 'r.open("get","http://localhost:63342/api/file/?file=%f&line=%l");r.send()', 'vscode' => 'vscode://file/%f:%l', 'vscode-insiders' => 'vscode-insiders://file/%f:%l', 'vscode-remote' => 'vscode://vscode-remote/%f:%l', 'vscode-insiders-remote' => 'vscode-insiders://vscode-remote/%f:%l', 'vscodium' => 'vscodium://file/%f:%l', 'nova' => 'nova://core/open/file?filename=%f&line=%l', 'xdebug' => 'xdebug://%f@%l', 'atom' => 'atom://core/open/file?filename=%f&line=%l', 'espresso' => 'x-espresso://open?filepath=%f&lines=%l', 'netbeans' => 'netbeans://open/?f=%f:%l', ); if (is_string($editor) && isset($editorLinkTemplates[$editor])) { $this->setXdebugLinkTemplate($editorLinkTemplates[$editor]); } } /** * @param string $xdebugLinkTemplate * @param bool $shouldUseAjax */ public function setXdebugLinkTemplate($xdebugLinkTemplate, $shouldUseAjax = false) { if ($xdebugLinkTemplate === 'idea') { $this->xdebugLinkTemplate = 'http://localhost:63342/api/file/?file=%f&line=%l'; $this->xdebugShouldUseAjax = true; } else { $this->xdebugLinkTemplate = $xdebugLinkTemplate; $this->xdebugShouldUseAjax = $shouldUseAjax; } } /** * @return bool */ public function getXdebugShouldUseAjax() { return $this->xdebugShouldUseAjax; } /** * returns an array of filename-replacements * * this is useful f.e. when using vagrant or remote servers, * where the path of the file is different between server and * development environment * * @return array key-value-pairs of replacements, key = path on server, value = replacement */ public function getXdebugReplacements() { return $this->xdebugReplacements; } /** * @param array $xdebugReplacements */ public function addXdebugReplacements($xdebugReplacements) { foreach ($xdebugReplacements as $serverPath => $replacement) { $this->setXdebugReplacement($serverPath, $replacement); } } /** * @param array $xdebugReplacements */ public function setXdebugReplacements($xdebugReplacements) { $this->xdebugReplacements = $xdebugReplacements; } /** * @param string $serverPath * @param string $replacement */ public function setXdebugReplacement($serverPath, $replacement) { $this->xdebugReplacements[$serverPath] = $replacement; } } Attempted to load class "DataCollector" from namespace "DebugBar\DataCollector". 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 "DataCollector" from namespace "DebugBar\DataCollector".
Did you forget a "use" statement for another namespace?

Exception

Symfony\Component\ErrorHandler\Error\ ClassNotFoundError

  1. /**
  2.  * AbstractDataCollector
  3.  *
  4.  * @since  4.0.0
  5.  */
  6. abstract class AbstractDataCollector extends DataCollector implements Renderable
  7. {
  8.     /**
  9.      * Parameters.
  10.      *
  11.      * @var   Registry
  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;
ClassLoader->loadClass('Joomla\\Plugin\\System\\Debug\\AbstractDataCollector') in /datas/yulpa173848/sites/2024.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.     }
ClassLoader->loadClass('Joomla\\Plugin\\System\\Debug\\AbstractDataCollector') in /datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/plugins/system/debug/src/DataCollector/InfoCollector.php (line 32)
  1. /**
  2.  * InfoDataCollector
  3.  *
  4.  * @since  4.0.0
  5.  */
  6. class InfoCollector extends AbstractDataCollector implements AssetProvider
  7. {
  8.     /**
  9.      * Collector name.
  10.      *
  11.      * @var   string
  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;
ClassLoader->loadClass('Joomla\\Plugin\\System\\Debug\\DataCollector\\InfoCollector') in /datas/yulpa173848/sites/2024.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.     }
ClassLoader->loadClass('Joomla\\Plugin\\System\\Debug\\DataCollector\\InfoCollector') in /datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/plugins/system/debug/src/Extension/Debug.php (line 286)
  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.                 if ($event->isStopped())
  2.                 {
  3.                     return $event;
  4.                 }
  5.                 $listener($event);
  6.             }
  7.         }
  8.         return $event;
  9.     }
  1.         // Send the application response.
  2.         $this->respond();
  3.         // Trigger the onAfterRespond event.
  4.         $this->getDispatcher()->dispatch('onAfterRespond');
  5.     }
  6.     /**
  7.      * Check if the user is required to reset their password.
  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/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 "DataCollector" from namespace "DebugBar\DataCollector".
Did you forget a "use" statement for another namespace?

  at /datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/plugins/system/debug/src/AbstractDataCollector.php:26
  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/plugins/system/debug/src/AbstractDataCollector.php')
     (/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/vendor/composer/ClassLoader.php:428)
  at Composer\Autoload\ClassLoader->loadClass('Joomla\\Plugin\\System\\Debug\\AbstractDataCollector')
     (/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/src/Autoload/ClassLoader.php:59)
  at Joomla\CMS\Autoload\ClassLoader->loadClass('Joomla\\Plugin\\System\\Debug\\AbstractDataCollector')
     (/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/plugins/system/debug/src/DataCollector/InfoCollector.php:32)
  at include('/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/plugins/system/debug/src/DataCollector/InfoCollector.php')
     (/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/plugins/system/debug/src/DataCollector/InfoCollector.php')
     (/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/vendor/composer/ClassLoader.php:428)
  at Composer\Autoload\ClassLoader->loadClass('Joomla\\Plugin\\System\\Debug\\DataCollector\\InfoCollector')
     (/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/src/Autoload/ClassLoader.php:59)
  at Joomla\CMS\Autoload\ClassLoader->loadClass('Joomla\\Plugin\\System\\Debug\\DataCollector\\InfoCollector')
     (/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/plugins/system/debug/src/Extension/Debug.php:286)
  at Joomla\Plugin\System\Debug\Extension\Debug->onAfterRespond(object(Event))
     (/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/vendor/joomla/event/src/Dispatcher.php:486)
  at Joomla\Event\Dispatcher->dispatch('onAfterRespond')
     (/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/src/Application/CMSApplication.php:332)
  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)