D à•<™ @ Ì•<™ @ 0 <™a t^¤âhµ© removeParameter 1 Læa ”~2rñµ© removeparameter Дa P¿a ¶a pÁa ¹{ @ü”<™ `#µ<™ p ü™a à•<™ @ Ì•<™ @ 0 œæa ÏúÄ+… hasExsltSupport 1 ¬ça .ì;ê½› hasexsltsupport Á Ça ‚b ¶a ÐÂa Á{ •<™ `#µ<™ 0 Œ¤b À @ Lža Ë·uÝž™ registerPHPFunctions A Ìäa ‰Šl½ò,û setSecurityPrefs ons á Äa ¼a ¶a Äa É{ Ðü”<™ `#µ<™ P <›a @ Ñ•<™  ە<™ à 0 üça ´žºþ•ÔÚ setProfiling 1 ,âa ;Ô,Jí¾ÔÚ setprofiling á °Åa PÃa ¶a PÅa Ñ{ °þ”<™ `#µ<™ P üåa È•<™ B à @ åa ÉÊ«œ1Ýß setsecurityprefs á 0ea Äa ¶a pÆa Ù{ Pÿ”<™ `#µ<™ P <ãa ¼•<™ à @ lãa ýÃî*O‘ë getSecurityPrefs A Œàa =¸dBÐ getsecurityprefs Á xa Âa ¶a ÐÇa á{ Ðÿ”<™ `#µ<™ 0 ¼äa À 0 |âa óV1“Cϲ xsltprocessor ± pÉ] Øa 0 0 ìÌa G ´Œ Ñ €Öa Øa ! pËa œ¿R™ @ 0 ,ÿa ¯Yc a ðÊa °éa A Øa œ¿R™ ! Øa œ¿R™ ` |Ëa ! ðÎa œ¿R™ ¬Ïa ¡ ðÊa œ¿R™ /crypto pÊa @îa ! °Ía œ¿R™ @ |Èa ypt ! pÊa œ¿R™ 0 @ Èa €Êa Êa A Pda @îa ! pÏa œ¿R™ ° @ lÏa Ëa Ëa Á ðÐa Àía €ãa œ¿R™ @ @ <Ía €Ëa Ëa äa œ¿R™ ! 0Ìa œ¿R™ @ ÜÈa ! ðÐa œ¿R™ € @ ,ía @Ìa `Ìa A À³J pÎa ! 0åa œ¿R™ € @ üÎa ÀÌa àÌa ðÐa œ¿R™ ! 0Ía œ¿R™ @ @ lêa @Ía `Ía ðÐa œ¿R™ ! pÎa œ¿R™ @ @ Êa ÀÍa àÍa ðÊa Àía ! pÑa œ¿R™ @ üËa ! 0Ôa œ¿R™ @ ìêa €Îa Îa A À³J °Ìa ! 0Òa œ¿R™ À @ Ëa Ïa Ïa A Pda @ía ! 0Óa œ¿R™ @ @ ,ìa €Ïa Ïa A ðÐa œ¿R™ ! ðÏa œ¿R™ @ @ ,éa Ða Ða Á . $lnEnd; } return ltrim($buffer, $tab); } /** * Renders the element * * @param WebAssetItemInterface|array $item The element * * @return string The resulting string * * @since 4.0.0 */ private function renderElement($item): string { $buffer = ''; $asset = $item instanceof WebAssetItemInterface ? $item : null; $src = $asset ? $asset->getUri() : ($item['src'] ?? ''); // 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 script [%s] is deprecated. %s', $asset->getName(), $asset->getOption('deprecatedMsg', '')), E_USER_DEPRECATED ); } } } else { $attribs = $item; $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 = ''; $defaultJsMimes = ['text/javascript', 'application/javascript', 'text/x-javascript', 'application/x-javascript']; $html5NoValueAttributes = ['defer', 'async', 'nomodule']; foreach ($attributes as $attrib => $value) { // Don't add the 'options' attribute. This attribute is for internal use (version, conditional, etc). if ($attrib === 'options' || $attrib === 'src') { 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, $defaultJsMimes)) { continue; } // B/C: If defer and async is false or empty don't render the attribute. Also skip if value is bool:false. if (\in_array($attrib, ['defer', 'async']) && !$value || $value === false) { continue; } // NoValue attribute, if it have bool:true $isNoValueAttrib = $value === true || \in_array($attrib, $html5NoValueAttributes); // 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; } /** * Renders ESM importmap element * * @param WebAssetItemInterface[] $assets The assets list * * @return string The attributes string * * @since 5.0.0 */ private function renderImportmap(array &$assets) { $buffer = ''; $importmap = ['imports' => []]; $tab = $this->_doc->_getTab(); $mediaVersion = $this->_doc->getMediaVersion(); // Collect a modules for the map foreach ($assets as $k => $item) { // Only importmap:true can be mapped if (!$item->getOption('importmap')) { continue; } $esmName = $item->getOption('importmapName') ?: $item->getName(); $esmScope = $item->getOption('importmapScope'); $version = $item->getVersion(); $src = $item->getUri(); if (!$src) { continue; } // Check if script uses media version. if ($version && !str_contains($src, '?') && !str_ends_with($src, '/') && ($mediaVersion || $version !== 'auto')) { $src .= '?' . ($version === 'auto' ? $mediaVersion : $version); } if (!$esmScope) { $importmap['imports'][$esmName] = $src; } else { $importmap['scopes'][$esmScope][$esmName] = $src; } // Remove the item from list of assets after it were added to the map. unset($assets[$k]); } if (!empty($importmap['imports'])) { // Add polyfill when exists if (!empty($assets['es-module-shims'])) { $buffer .= $this->renderElement($assets['es-module-shims']); } // Render importmap $jsonImports = json_encode($importmap, JDEBUG ? JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES : JSON_UNESCAPED_SLASHES); $attribs = ['type' => 'importmap']; // Add "nonce" attribute if exist if ($this->_doc->cspNonce && !\is_null($this->_doc->cspNonce)) { $attribs['nonce'] = $this->_doc->cspNonce; } $buffer .= $tab . ''; } // Remove polyfill for "importmap" from assets list unset($assets['es-module-shims']); 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 * ob_end_clean(); } $this->getDocument()->setTitle(Text::_('Error') . ': ' . $error->getCode()); return $this->getDocument()->render( false, [ 'template' => $template->template, 'directory' => JPATH_THEMES, 'debug' => JDEBUG, 'subject' => $app, 'document' => $renderer->getDocument(), ]) ); $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->dispatchEvent('onError', $event); ExceptionHandler::handleException($event->getError()); } // Trigger the onBeforeRespond event. $this->dispatchEvent( '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 && !$this->getIdentity()->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 scripts
at /datas/yulpa173848/sites/test2025.samclap-ufolep.fr/htdocs/libraries/src/Document/Factory.php:101
at Joomla\CMS\Document\Factory->createRenderer(object(ErrorDocument), 'scripts', 'Html')
(/datas/yulpa173848/sites/test2025.samclap-ufolep.fr/htdocs/libraries/src/Document/ErrorDocument.php:98)
at Joomla\CMS\Document\ErrorDocument->loadRenderer('scripts')
(/datas/yulpa173848/sites/test2025.samclap-ufolep.fr/htdocs/libraries/src/Document/HtmlDocument.php:537)
at Joomla\CMS\Document\HtmlDocument->getBuffer('scripts', null, array())
(/datas/yulpa173848/sites/test2025.samclap-ufolep.fr/htdocs/libraries/src/Document/HtmlDocument.php:894)
at Joomla\CMS\Document\HtmlDocument->_renderTemplate()
(/datas/yulpa173848/sites/test2025.samclap-ufolep.fr/htdocs/libraries/src/Document/HtmlDocument.php:647)
at Joomla\CMS\Document\HtmlDocument->render(false, array('template' => 'allrounder', 'directory' => '/datas/yulpa173848/sites/test2025.samclap-ufolep.fr/htdocs/templates', 'debug' => true, 'csp_nonce' => null, 'templateInherits' => '', 'params' => object(Registry), 'file' => 'error.php'))
(/datas/yulpa173848/sites/test2025.samclap-ufolep.fr/htdocs/libraries/src/Document/ErrorDocument.php:139)
at Joomla\CMS\Document\ErrorDocument->render(false, array('template' => 'allrounder', 'directory' => '/datas/yulpa173848/sites/test2025.samclap-ufolep.fr/htdocs/templates', 'debug' => true, 'csp_nonce' => null, 'templateInherits' => '', 'params' => object(Registry), 'file' => 'error.php'))
(/datas/yulpa173848/sites/test2025.samclap-ufolep.fr/htdocs/libraries/src/Error/Renderer/HtmlRenderer.php:70)
at Joomla\CMS\Error\Renderer\HtmlRenderer->render(object(RuntimeException))
(/datas/yulpa173848/sites/test2025.samclap-ufolep.fr/htdocs/libraries/src/Exception/ExceptionHandler.php:136)
at Joomla\CMS\Exception\ExceptionHandler::render(object(RuntimeException))
(/datas/yulpa173848/sites/test2025.samclap-ufolep.fr/htdocs/libraries/src/Exception/ExceptionHandler.php:73)
at Joomla\CMS\Exception\ExceptionHandler::handleException(object(RuntimeException))
(/datas/yulpa173848/sites/test2025.samclap-ufolep.fr/htdocs/libraries/src/Application/CMSApplication.php:336)
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)
|
|
[1/2]
RuntimeException
|
|---|
RuntimeException:
Unable to load renderer class scripts
at /datas/yulpa173848/sites/test2025.samclap-ufolep.fr/htdocs/libraries/src/Document/Factory.php:101
at Joomla\CMS\Document\Factory->createRenderer(object(HtmlDocument), 'scripts')
(/datas/yulpa173848/sites/test2025.samclap-ufolep.fr/htdocs/libraries/src/Document/Document.php:1128)
at Joomla\CMS\Document\Document->loadRenderer('scripts')
(/datas/yulpa173848/sites/test2025.samclap-ufolep.fr/htdocs/libraries/src/Document/HtmlDocument.php:537)
at Joomla\CMS\Document\HtmlDocument->getBuffer('scripts', null, array())
(/datas/yulpa173848/sites/test2025.samclap-ufolep.fr/htdocs/libraries/src/Document/HtmlDocument.php:894)
at Joomla\CMS\Document\HtmlDocument->_renderTemplate()
(/datas/yulpa173848/sites/test2025.samclap-ufolep.fr/htdocs/libraries/src/Document/HtmlDocument.php:647)
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/test2025.samclap-ufolep.fr/htdocs/templates'))
(/datas/yulpa173848/sites/test2025.samclap-ufolep.fr/htdocs/libraries/src/Application/CMSApplication.php:1122)
at Joomla\CMS\Application\CMSApplication->render()
(/datas/yulpa173848/sites/test2025.samclap-ufolep.fr/htdocs/libraries/src/Application/SiteApplication.php:763)
at Joomla\CMS\Application\SiteApplication->render()
(/datas/yulpa173848/sites/test2025.samclap-ufolep.fr/htdocs/libraries/src/Application/CMSApplication.php:311)
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)
|