ulpa173848/sites/samclap-ufolep.fr/htdocs/libraries/src/Extension/Service/Provider/ModuleDispatcherFactory.php A PU @ {=i l /datas/yulpa173848/sites/samclap-ufolep.fr/htdocs/libraries/vendor/composer/../../../libraries/src/Extension/Service/Provider/HelperFactory.php /datas/yulpa173848/sites/samclap-ufolep.fr/htdocs/libraries/src/Extension/Service/Provider/HelperFactory.php c BD {=i l l /datas/yulpa173848/sites/samclap-ufolep.fr/htdocs/libraries/src/Extension/Service/Provider/HelperFactory.php j*Ȕl /datas/yulpa173848/sites/samclap-ufolep.fr/htdocs/libraries/src/Extension/Service/Provider/HelperFactory.php 1 ك {=i e /datas/yulpa173848/sites/samclap-ufolep.fr/htdocs/libraries/vendor/composer/../../../libraries/src/Extension/Service/Provider/Module.php /datas/yulpa173848/sites/samclap-ufolep.fr/htdocs/libraries/src/Extension/Service/Provider/Module.php p ( BD {=i e e /datas/yulpa173848/sites/samclap-ufolep.fr/htdocs/libraries/src/Extension/Service/Provider/Modul ;*e /datas/yulpa173848/sites/samclap-ufolep.fr/htdocs/libraries/src/Extension/Service/Provider/Module.php z 0 Ѕ {=i M M /datas/yulpa173848/sites/samclap-ufolep.fr/htdocs/modules/mod_breadcrumbs/src D ǽ` ` `M {=i X X /datas/yulpa173848/sites/samclap-ufolep.fr/htdocs/modules/mod_breadcrumbs/src/Dispatcher 0 pUFO @ {=i g g /datas/yulpa173848/sites/samclap-ufolep.fr/htdocs/modules/mod_breadcrumbs/src/Dispatcher/Dispatc ؘ BD ulpa173848/sites/samclap-ufolep.fr/htdocs/modules/mod_breadcrumbs/src/Dispatcher/Dispatcher.php 1 ` ֈ o {=i b /datas/yulpa173848/sites/samclap-ufolep.fr/htdocs/libraries/vendor/composer/../../../libraries/src/Helper/HelperFactoryAwareTrait.php /datas/yulpa173848/sites/samclap-ufolep.fr/htdocs/libraries/src/Helper/HelperFactoryAwareTrait.php BD {=i b b /datas/yulpa173848/sites/samclap-ufolep.fr/htdocs/libraries/src/Helper/HelperFactoryAwareTrait.p PauYb /datas/yulpa173848/sites/samclap-ufolep.fr/htdocs/libraries/src/Helper/HelperFactoryAwareTrait.php 1 Z {=i f /datas/yulpa173848/sites/samclap-ufolep.fr/htdocs/libraries/vendor/composer/../../../libraries/src/Helper/HelperFactoryAwareInterface.php /datas/yulpa173848/sites/samclap-ufolep.fr/htdocs/libraries/src/Helper/HelperFactoryAwareInterface.php` ؕ BD {=i f f /datas/yulpa173848/sites/samclap-ufolep.fr/htdocs/libraries/src/Helper/HelperFactoryAwareInterfa Tpf /datas/yulpa173848/sites/samclap-ufolep.fr/htdocs/libraries/src/Helper/HelperFactoryAwareInterface.php a p P {=i T T /datas/yulpa173848/sites/samclap-ufolep.fr/htdocs/language/en-GB/mod_breadcrumbs :i8 {=i T T /datas/yulpa173848/sites/samclap-ufolep.fr/htdocs/language/fr-FR/mod_breadcrumbs.ini 0͆ p v {=i T T /datas/yulpa173848/sites/samclap-ufolep.fr/htdocs/modules/mod_breadcrumbs/src/He fݪgJ 0 {=i j j /datas/yulpa173848/sites/samclap-ufolep.fr/htdocs/modules/mod_breadcrumbs/src/Helper/BreadcrumbsHelper.php X BD j /datas/yulpa173848/sites/samclap-ufolep.fr/htdocs/modules/mod_breadcrumb($item['href'] ?? ''); // Make sure we have a src, and it not already rendered if (!$src || !empty($this->renderedSrc[$src])) { return ''; } $lnEnd = $this->_doc->_getLineEnd(); $tab = $this->_doc->_getTab(); $mediaVersion = $this->_doc->getMediaVersion(); // Get the attributes and other options if ($asset) { $attribs = $asset->getAttributes(); $version = $asset->getVersion(); $conditional = $asset->getOption('conditional'); // Add an asset info for debugging if (JDEBUG) { $attribs['data-asset-name'] = $asset->getName(); if ($asset->getDependencies()) { $attribs['data-asset-dependencies'] = implode(',', $asset->getDependencies()); } if ($asset->getOption('deprecated')) { @trigger_error( sprintf('Web Asset style [%s] is deprecated. %s', $asset->getName(), $asset->getOption('deprecatedMsg', '')), E_USER_DEPRECATED ); } } } else { $attribs = $item; $version = isset($attribs['options']['version']) ? $attribs['options']['version'] : ''; $conditional = !empty($attribs['options']['conditional']) ? $attribs['options']['conditional'] : null; } // Add "nonce" attribute if exist if ($this->_doc->cspNonce && !is_null($this->_doc->cspNonce)) { $attribs['nonce'] = $this->_doc->cspNonce; } // To prevent double rendering $this->renderedSrc[$src] = true; // Check if script uses media version. if ($version && strpos($src, '?') === false && ($mediaVersion || $version !== 'auto')) { $src .= '?' . ($version === 'auto' ? $mediaVersion : $version); } $buffer .= $tab; // This is for IE conditional statements support. if (!\is_null($conditional)) { $buffer .= ''; } $buffer .= $lnEnd; return $buffer; } /** * Renders the inline element * * @param WebAssetItemInterface|array $item The element * * @return string The resulting string * * @since 4.0.0 */ private function renderInlineElement($item): string { $buffer = ''; $lnEnd = $this->_doc->_getLineEnd(); $tab = $this->_doc->_getTab(); if ($item instanceof WebAssetItemInterface) { $attribs = $item->getAttributes(); $content = $item->getOption('content'); } else { $attribs = $item; $content = $item['content'] ?? ''; unset($attribs['content']); } // Do not produce empty elements if (!$content) { return ''; } // Add "nonce" attribute if exist if ($this->_doc->cspNonce && !is_null($this->_doc->cspNonce)) { $attribs['nonce'] = $this->_doc->cspNonce; } $buffer .= $tab . '' . $lnEnd; return $buffer; } /** * Renders the element attributes * * @param array $attributes The element attributes * * @return string The attributes string * * @since 4.0.0 */ private function renderAttributes(array $attributes): string { $buffer = ''; $defaultCssMimes = ['text/css']; foreach ($attributes as $attrib => $value) { // Don't add the 'options' attribute. This attribute is for internal use (version, conditional, etc). if ($attrib === 'options' || $attrib === 'href') { continue; } // Don't add type attribute if document is HTML5 and it's a default mime type. 'mime' is for B/C. if (\in_array($attrib, ['type', 'mime']) && $this->_doc->isHtml5() && \in_array($value, $defaultCssMimes)) { continue; } // Skip the attribute if value is bool:false. if ($value === false) { continue; } // NoValue attribute, if it have bool:true $isNoValueAttrib = $value === true; // Don't add type attribute if document is HTML5 and it's a default mime type. 'mime' is for B/C. if ($attrib === 'mime') { $attrib = 'type'; } elseif ($isNoValueAttrib) { // NoValue attribute in non HTML5 should contain a value, set it equal to attribute name. $value = $attrib; } // Add attribute to script tag output. $buffer .= ' ' . htmlspecialchars($attrib, ENT_COMPAT, 'UTF-8'); if (!($this->_doc->isHtml5() && $isNoValueAttrib)) { // Json encode value if it's an array. $value = !is_scalar($value) ? json_encode($value) : $value; $buffer .= '="' . htmlspecialchars($value, ENT_COMPAT, 'UTF-8') . '"'; } } return $buffer; } }
if (!class_exists($class)) { // "Legacy" class name structure $class = '\\JDocumentRenderer' . $type; if (!class_exists($class)) { throw new \RuntimeException(sprintf('Unable to load renderer class %s', $type), 500); } } $instance = new $class($document); * @throws \RuntimeException */ public function loadRenderer($type) { // Need to force everything to go to the HTML renderers or we duplicate all the things return $this->factory->createRenderer($this, $type, 'html'); } /** * Render the document * if (isset(parent::$_buffer[$type][$name][$title])) { return parent::$_buffer[$type][$name][$title]; } $renderer = $this->loadRenderer($type); if ($this->_caching == true && $type === 'modules' && $name !== 'debug') { /** @var \Joomla\CMS\Document\Renderer\Html\ModulesRenderer $renderer */ /** @var \Joomla\CMS\Cache\Controller\OutputController $cache */ $cache = $this->getCacheControllerFactory()->createCacheController('output', ['defaultgroup' => 'com_modules']); $replace = []; $with = []; foreach ($this->_template_tags as $jdoc => $args) { $replace[] = $jdoc; $with[] = $this->getBuffer($args['type'], $args['name'], $args['attribs']); } return str_replace($replace, $with, $this->_template); }} if (\array_key_exists('csp_nonce', $params) && $params['csp_nonce'] !== null) { $this->cspNonce = $params['csp_nonce']; } $data = $this->_renderTemplate(); parent::render($caching, $params); return $data; } $this->debug = $params['debug'] ?? false; $this->error = $this->_error; $params['file'] = 'error.php'; return parent::render($cache, $params); } /** * Render the backtrace * 'template' => $template->template, 'directory' => JPATH_THEMES, 'debug' => JDEBUG, 'csp_nonce' => $app->get('csp_nonce'), 'templateInherits' => $template->parent, 'params' => $template->params, ] ); }} // 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'; if (!class_exists($class)) { // "Legacy" class name structure $class = '\\JDocumentRenderer' . $type; if (!class_exists($class)) { throw new \RuntimeException(sprintf('Unable to load renderer class %s', $type), 500); } } $instance = new $class($document); * @since 1.7.0 * @throws \RuntimeException */ public function loadRenderer($type) { return $this->factory->createRenderer($this, $type); } /** * Parses the document and prepares the buffers * if (isset(parent::$_buffer[$type][$name][$title])) { return parent::$_buffer[$type][$name][$title]; } $renderer = $this->loadRenderer($type); if ($this->_caching == true && $type === 'modules' && $name !== 'debug') { /** @var \Joomla\CMS\Document\Renderer\Html\ModulesRenderer $renderer */ /** @var \Joomla\CMS\Cache\Controller\OutputController $cache */ $cache = $this->getCacheControllerFactory()->createCacheController('output', ['defaultgroup' => 'com_modules']); $replace = []; $with = []; foreach ($this->_template_tags as $jdoc => $args) { $replace[] = $jdoc; $with[] = $this->getBuffer($args['type'], $args['name'], $args['attribs']); } return str_replace($replace, $with, $this->_template); }} if (\array_key_exists('csp_nonce', $params) && $params['csp_nonce'] !== null) { $this->cspNonce = $params['csp_nonce']; } $data = $this->_renderTemplate(); parent::render($caching, $params); return $data; } if ($this->isClient('site') && $this->get('caching') && $this->get('caching', 2) == 2 && !Factory::getUser()->get('id')) { $caching = true; } // Render the document. $data = $this->document->render($caching, $this->docOptions); // Set the application output data. $this->setBody($data); // Trigger the onAfterRender event. $this->set('themeInherits', $template->parent); break; } parent::render(); } /** * Route the application. * $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(); } // If gzip compression is enabled in configuration and the server is compliant, compress the output. if ($this->get('gzip') && !ini_get('zlib.output_compression') && ini_get('output_handler') !== 'ob_gzhandler') { $this->compress();// 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]
RuntimeException
|
|---|
RuntimeException:
Unable to load renderer class styles
at /datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/src/Document/Factory.php:101
at Joomla\CMS\Document\Factory->createRenderer(object(ErrorDocument), 'styles', 'Html')
(/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/src/Document/ErrorDocument.php:98)
at Joomla\CMS\Document\ErrorDocument->loadRenderer('styles')
(/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/src/Document/HtmlDocument.php:527)
at Joomla\CMS\Document\HtmlDocument->getBuffer('styles', null, array())
(/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/src/Document/HtmlDocument.php:833)
at Joomla\CMS\Document\HtmlDocument->_renderTemplate()
(/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/src/Document/HtmlDocument.php:637)
at Joomla\CMS\Document\HtmlDocument->render(false, array('template' => 'allrounder', 'directory' => '/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/templates', 'debug' => true, 'csp_nonce' => null, 'templateInherits' => '', 'params' => object(Registry), 'file' => 'error.php'))
(/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/src/Document/ErrorDocument.php:139)
at Joomla\CMS\Document\ErrorDocument->render(false, array('template' => 'allrounder', 'directory' => '/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/templates', 'debug' => true, 'csp_nonce' => null, 'templateInherits' => '', 'params' => object(Registry), 'file' => 'error.php'))
(/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/src/Error/Renderer/HtmlRenderer.php:78)
at Joomla\CMS\Error\Renderer\HtmlRenderer->render(object(RuntimeException))
(/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/src/Exception/ExceptionHandler.php:126)
at Joomla\CMS\Exception\ExceptionHandler::render(object(RuntimeException))
(/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/src/Exception/ExceptionHandler.php:72)
at Joomla\CMS\Exception\ExceptionHandler::handleException(object(RuntimeException))
(/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]
RuntimeException
|
|---|
RuntimeException:
Unable to load renderer class styles
at /datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/src/Document/Factory.php:101
at Joomla\CMS\Document\Factory->createRenderer(object(HtmlDocument), 'styles')
(/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/src/Document/Document.php:1128)
at Joomla\CMS\Document\Document->loadRenderer('styles')
(/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/src/Document/HtmlDocument.php:527)
at Joomla\CMS\Document\HtmlDocument->getBuffer('styles', null, array())
(/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/src/Document/HtmlDocument.php:833)
at Joomla\CMS\Document\HtmlDocument->_renderTemplate()
(/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/src/Document/HtmlDocument.php:637)
at Joomla\CMS\Document\HtmlDocument->render(false, array('template' => 'allrounder', 'file' => 'index.php', 'params' => object(Registry), 'csp_nonce' => null, 'templateInherits' => null, 'directory' => '/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/templates'))
(/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/src/Application/CMSApplication.php:1025)
at Joomla\CMS\Application\CMSApplication->render()
(/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/src/Application/SiteApplication.php:724)
at Joomla\CMS\Application\SiteApplication->render()
(/datas/yulpa173848/sites/2024.samclap-ufolep.fr/htdocs/libraries/src/Application/CMSApplication.php:298)
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)
|