0
Kérjük, próbálkozzon a következő oldalak egyikével:
Kérjük, próbálkozzon a következő oldalak egyikével:
// Write the new entry to the file.
$line = $this->formatLine($entry);
$line .= "\n";
if (!File::append($this->path, $line)) {
throw new \RuntimeException('Cannot write to log file.');
}
}
}
/**
$this->loggers[$signature] = new $class($this->configurations[$signature]);
}
// Add the entry to the logger.
$this->loggers[$signature]->addEntry(clone $entry);
}
}
/**
* Method to find the loggers to use based on priority and category values.
// If the entry object isn't a LogEntry object let's make one.
if (!($entry instanceof LogEntry)) {
$entry = new LogEntry((string) $entry, $priority, $category, $date, $context);
}
static::$instance->addLogEntry($entry);
}
/**
* Add a logger to the Log instance. Loggers route log entries to the correct files/systems to be logged.
*
}
$priority = $this->psrToJoomlaPriorityMap[$level];
$date = @$context['date'] ?? null;
Log::add((string) $message, $priority, $this->category, $date, $context);
}
}
*
* @return void
*/
public function error($message, array $context = array())
{
$this->log(LogLevel::ERROR, $message, $context);
}
/**
* Exceptional occurrences that are not errors.
*
* Example: Use of deprecated APIs, poor use of an API, undesirable things
public static function logException(Exception $e): void
{
$container = ContainerFactory::getInstance();
/** @var LoggerInterface $logger */
$logger = $container->get(LoggerInterface::class);
$logger->error((string)$e);
}
}
public function onException(ExceptionEvent $event)
{
$options = $this->getOptions();
$callback = $options->getExceptionCallback();
if ($callback) {
call_user_func($callback, $event->getException());
}
$event->setThrowException($options->getThrowExceptions());
}
}
// Execute listeners
$responses = new ResponseCollection();
foreach ($listOfListenersByPriority as $listOfListeners) {
foreach ($listOfListeners as $listeners) {
foreach ($listeners as $listener) {
$response = $listener($event);
$responses->push($response);
// If the event was asked to stop propagating, do so
if ($event->propagationIsStopped()) {
$responses->setStopped(\true);
return $responses;
/**
* @inheritDoc
*/
public function triggerEvent(EventInterface $event)
{
return $this->triggerListeners($event);
}
/**
* @inheritDoc
*/
public function triggerEventUntil(callable $callback, EventInterface $event)
* @return mixed
*/
protected function triggerException($eventName, ArrayObject $args, &$result, \Exception $exception)
{
$exceptionEvent = new ExceptionEvent($eventName . '.exception', $this, $args, $result, $exception);
$eventRs = $this->getEventManager()->triggerEvent($exceptionEvent);
if ($exceptionEvent->getThrowException()) {
throw $exceptionEvent->getException();
}
return $eventRs->stopped() ? $eventRs->last() : $exceptionEvent->getResult();
}
$eventRs = $this->triggerPre(__FUNCTION__, $args);
$result = $eventRs->stopped() ? $eventRs->last() : $this->internalSetItem($args['key'], $args['value']);
return $this->triggerPost(__FUNCTION__, $args, $result);
} catch (\Exception $e) {
$result = \false;
return $this->triggerException(__FUNCTION__, $args, $result, $e);
}
}
/**
* Internal method to store an item.
*
{
$options = $this->getOptions();
if ($options->getWritable() && $options->getClearStatCache()) {
$this->filesystem->clearStatCache();
}
return parent::setItem($key, $value);
}
/**
* Store multiple items.
*
* @param array $keyValuePairs
try {
//Save an empty page using the same id then tag it
$this->taggableCache->setItem(
$this->cacheId,
'<html lang><head><title></title></head><body></body></html>'
);
$this->taggableCache->setTags(
$this->cacheId,
$this->getPageCacheTags()
);
}
public function store(string $html): string
{
//Tag should be set in parent::store()
$html = parent::store($html);
//This function will check for a valid tag before saving capture cache
$this->setCaptureCache($html);
return $html;
$body = $app->getBody();
//Still need to validate the HTMl here. We may be on a redirect.
if (Helper::validateHtml($body)) {
$pageCache->store($this->addUpdateHitScript(
$container,
$this->addUpdateFormTokenAjax($container, $body)
));
}
}
}
if ($event->isStopped())
{
return $event;
}
$listener($event);
}
}
return $event;
}
// Send the application response.
$this->respond();
// Trigger the onAfterRespond event.
$this->getDispatcher()->dispatch('onAfterRespond');
}
/**
* Check if the user is required to reset their password.
*
// 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 file
require_once dirname(__FILE__) . '/includes/app.php';
RuntimeException
|
---|
RuntimeException: Cannot write to log file. at /home/invictus/public_html/libraries/src/Log/Logger/FormattedtextLogger.php:169 at Joomla\CMS\Log\Logger\FormattedtextLogger->addEntry(object(LogEntry)) (/home/invictus/public_html/libraries/src/Log/Log.php:351) at Joomla\CMS\Log\Log->addLogEntry(object(LogEntry)) (/home/invictus/public_html/libraries/src/Log/Log.php:176) at Joomla\CMS\Log\Log::add(object(LogEntry), 8, 'com_jchoptimize', null, array()) (/home/invictus/public_html/administrator/components/com_jchoptimize/src/Joomla/Log/JoomlaLogger.php:63) at CodeAlfa\Component\JchOptimize\Administrator\Joomla\Log\JoomlaLogger->log('error', 'ErrorException: mkdir(): Disk quota exceeded in /home/invictus/public_html/administrator/components/com_jchoptimize/lib/vendor/laminas/laminas-cache-storage-adapter-filesystem/src/Filesystem/LocalFilesystemInteraction.php:273Stack trace:#0 [internal function]: _JchOptimizeVendor\\V91\\Laminas\\Stdlib\\ErrorHandler::addError(2, \'mkdir(): Disk q...\', \'/home/invictus/...\', 273)#1 /home/invictus/public_html/administrator/components/com_jchoptimize/lib/vendor/laminas/laminas-cache-storage-adapter-filesystem/src/Filesystem/LocalFilesystemInteraction.php(273): mkdir(\'/home/invictus/...\', 493, false)#2 /home/invictus/public_html/administrator/components/com_jchoptimize/lib/vendor/laminas/laminas-cache-storage-adapter-filesystem/src/Filesystem.php(1188): _JchOptimizeVendor\\V91\\Laminas\\Cache\\Storage\\Adapter\\Filesystem\\LocalFilesystemInteraction->createDirectory(\'/home/invictus/...\', 493, false, NULL)#3 /home/invictus/public_html/administrator/components/com_jchoptimize/lib/vendor/laminas/laminas-cache-storage-adapter-filesystem/src/Filesystem.php(822): _JchOptimizeVendor\\V91\\Laminas\\Cache\\Storage\\Adapter\\Filesystem->prepareDirectoryStructure(\'/home/invictus/...\')#4 /home/invictus/public_html/administrator/components/com_jchoptimize/lib/vendor/laminas/laminas-cache/src/Storage/Adapter/AbstractAdapter.php(562): _JchOptimizeVendor\\V91\\Laminas\\Cache\\Storage\\Adapter\\Filesystem->internalSetItem(\'1f0657c3091f472...\', \'s:59:"<html lan...\')#5 /home/invictus/public_html/administrator/components/com_jchoptimize/lib/vendor/laminas/laminas-cache-storage-adapter-filesystem/src/Filesystem.php(716): _JchOptimizeVendor\\V91\\Laminas\\Cache\\Storage\\Adapter\\AbstractAdapter->setItem(\'1f0657c3091f472...\', \'<html lang><hea...\')#6 /home/invictus/public_html/administrator/components/com_jchoptimize/lib/src/PageCache/PageCache.php(223): _JchOptimizeVendor\\V91\\Laminas\\Cache\\Storage\\Adapter\\Filesystem->setItem(\'1f0657c3091f472...\', \'<html lang><hea...\')#7 /home/invictus/public_html/administrator/components/com_jchoptimize/lib/src/PageCache/CaptureCache.php(177): JchOptimize\\Core\\PageCache\\PageCache->store(\'<!DOCTYPE html>...\')#8 /home/invictus/public_html/plugins/system/jchpagecache/src/Extension/JchPageCache.php(224): JchOptimize\\Core\\PageCache\\CaptureCache->store(\'<!DOCTYPE html>...\')#9 /home/invictus/public_html/libraries/vendor/joomla/event/src/Dispatcher.php(486): CodeAlfa\\Plugin\\System\\JchPageCache\\Extension\\JchPageCache->onAfterRespond(Object(Joomla\\Event\\Event))#10 /home/invictus/public_html/libraries/src/Application/CMSApplication.php(332): Joomla\\Event\\Dispatcher->dispatch(\'onAfterRespond\')#11 /home/invictus/public_html/includes/app.php(61): Joomla\\CMS\\Application\\CMSApplication->execute()#12 /home/invictus/public_html/index.php(32): require_once(\'/home/invictus/...\')#13 {main}Next _JchOptimizeVendor\\V91\\Laminas\\Cache\\Exception\\RuntimeException: Could not create directory "/home/invictus/public_html/administrator/cache/com_jchoptimize/jchoptimizetags-fb/jchoptimizetags-8d" in /home/invictus/public_html/administrator/components/com_jchoptimize/lib/vendor/laminas/laminas-cache-storage-adapter-filesystem/src/Filesystem/LocalFilesystemInteraction.php:279Stack trace:#0 /home/invictus/public_html/administrator/components/com_jchoptimize/lib/vendor/laminas/laminas-cache-storage-adapter-filesystem/src/Filesystem.php(1188): _JchOptimizeVendor\\V91\\Laminas\\Cache\\Storage\\Adapter\\Filesystem\\LocalFilesystemInteraction->createDirectory(\'/home/invictus/...\', 493, false, NULL)#1 /home/invictus/public_html/administrator/components/com_jchoptimize/lib/vendor/laminas/laminas-cache-storage-adapter-filesystem/src/Filesystem.php(822): _JchOptimizeVendor\\V91\\Laminas\\Cache\\Storage\\Adapter\\Filesystem->prepareDirectoryStructure(\'/home/invictus/...\')#2 /home/invictus/public_html/administrator/components/com_jchoptimize/lib/vendor/laminas/laminas-cache/src/Storage/Adapter/AbstractAdapter.php(562): _JchOptimizeVendor\\V91\\Laminas\\Cache\\Storage\\Adapter\\Filesystem->internalSetItem(\'1f0657c3091f472...\', \'s:59:"<html lan...\')#3 /home/invictus/public_html/administrator/components/com_jchoptimize/lib/vendor/laminas/laminas-cache-storage-adapter-filesystem/src/Filesystem.php(716): _JchOptimizeVendor\\V91\\Laminas\\Cache\\Storage\\Adapter\\AbstractAdapter->setItem(\'1f0657c3091f472...\', \'<html lang><hea...\')#4 /home/invictus/public_html/administrator/components/com_jchoptimize/lib/src/PageCache/PageCache.php(223): _JchOptimizeVendor\\V91\\Laminas\\Cache\\Storage\\Adapter\\Filesystem->setItem(\'1f0657c3091f472...\', \'<html lang><hea...\')#5 /home/invictus/public_html/administrator/components/com_jchoptimize/lib/src/PageCache/CaptureCache.php(177): JchOptimize\\Core\\PageCache\\PageCache->store(\'<!DOCTYPE html>...\')#6 /home/invictus/public_html/plugins/system/jchpagecache/src/Extension/JchPageCache.php(224): JchOptimize\\Core\\PageCache\\CaptureCache->store(\'<!DOCTYPE html>...\')#7 /home/invictus/public_html/libraries/vendor/joomla/event/src/Dispatcher.php(486): CodeAlfa\\Plugin\\System\\JchPageCache\\Extension\\JchPageCache->onAfterRespond(Object(Joomla\\Event\\Event))#8 /home/invictus/public_html/libraries/src/Application/CMSApplication.php(332): Joomla\\Event\\Dispatcher->dispatch(\'onAfterRespond\')#9 /home/invictus/public_html/includes/app.php(61): Joomla\\CMS\\Application\\CMSApplication->execute()#10 /home/invictus/public_html/index.php(32): require_once(\'/home/invictus/...\')#11 {main}', array()) (/home/invictus/public_html/administrator/components/com_jchoptimize/lib/vendor/psr/log/Psr/Log/AbstractLogger.php:66) at _JchOptimizeVendor\V91\Psr\Log\AbstractLogger->error('ErrorException: mkdir(): Disk quota exceeded in /home/invictus/public_html/administrator/components/com_jchoptimize/lib/vendor/laminas/laminas-cache-storage-adapter-filesystem/src/Filesystem/LocalFilesystemInteraction.php:273Stack trace:#0 [internal function]: _JchOptimizeVendor\\V91\\Laminas\\Stdlib\\ErrorHandler::addError(2, \'mkdir(): Disk q...\', \'/home/invictus/...\', 273)#1 /home/invictus/public_html/administrator/components/com_jchoptimize/lib/vendor/laminas/laminas-cache-storage-adapter-filesystem/src/Filesystem/LocalFilesystemInteraction.php(273): mkdir(\'/home/invictus/...\', 493, false)#2 /home/invictus/public_html/administrator/components/com_jchoptimize/lib/vendor/laminas/laminas-cache-storage-adapter-filesystem/src/Filesystem.php(1188): _JchOptimizeVendor\\V91\\Laminas\\Cache\\Storage\\Adapter\\Filesystem\\LocalFilesystemInteraction->createDirectory(\'/home/invictus/...\', 493, false, NULL)#3 /home/invictus/public_html/administrator/components/com_jchoptimize/lib/vendor/laminas/laminas-cache-storage-adapter-filesystem/src/Filesystem.php(822): _JchOptimizeVendor\\V91\\Laminas\\Cache\\Storage\\Adapter\\Filesystem->prepareDirectoryStructure(\'/home/invictus/...\')#4 /home/invictus/public_html/administrator/components/com_jchoptimize/lib/vendor/laminas/laminas-cache/src/Storage/Adapter/AbstractAdapter.php(562): _JchOptimizeVendor\\V91\\Laminas\\Cache\\Storage\\Adapter\\Filesystem->internalSetItem(\'1f0657c3091f472...\', \'s:59:"<html lan...\')#5 /home/invictus/public_html/administrator/components/com_jchoptimize/lib/vendor/laminas/laminas-cache-storage-adapter-filesystem/src/Filesystem.php(716): _JchOptimizeVendor\\V91\\Laminas\\Cache\\Storage\\Adapter\\AbstractAdapter->setItem(\'1f0657c3091f472...\', \'<html lang><hea...\')#6 /home/invictus/public_html/administrator/components/com_jchoptimize/lib/src/PageCache/PageCache.php(223): _JchOptimizeVendor\\V91\\Laminas\\Cache\\Storage\\Adapter\\Filesystem->setItem(\'1f0657c3091f472...\', \'<html lang><hea...\')#7 /home/invictus/public_html/administrator/components/com_jchoptimize/lib/src/PageCache/CaptureCache.php(177): JchOptimize\\Core\\PageCache\\PageCache->store(\'<!DOCTYPE html>...\')#8 /home/invictus/public_html/plugins/system/jchpagecache/src/Extension/JchPageCache.php(224): JchOptimize\\Core\\PageCache\\CaptureCache->store(\'<!DOCTYPE html>...\')#9 /home/invictus/public_html/libraries/vendor/joomla/event/src/Dispatcher.php(486): CodeAlfa\\Plugin\\System\\JchPageCache\\Extension\\JchPageCache->onAfterRespond(Object(Joomla\\Event\\Event))#10 /home/invictus/public_html/libraries/src/Application/CMSApplication.php(332): Joomla\\Event\\Dispatcher->dispatch(\'onAfterRespond\')#11 /home/invictus/public_html/includes/app.php(61): Joomla\\CMS\\Application\\CMSApplication->execute()#12 /home/invictus/public_html/index.php(32): require_once(\'/home/invictus/...\')#13 {main}Next _JchOptimizeVendor\\V91\\Laminas\\Cache\\Exception\\RuntimeException: Could not create directory "/home/invictus/public_html/administrator/cache/com_jchoptimize/jchoptimizetags-fb/jchoptimizetags-8d" in /home/invictus/public_html/administrator/components/com_jchoptimize/lib/vendor/laminas/laminas-cache-storage-adapter-filesystem/src/Filesystem/LocalFilesystemInteraction.php:279Stack trace:#0 /home/invictus/public_html/administrator/components/com_jchoptimize/lib/vendor/laminas/laminas-cache-storage-adapter-filesystem/src/Filesystem.php(1188): _JchOptimizeVendor\\V91\\Laminas\\Cache\\Storage\\Adapter\\Filesystem\\LocalFilesystemInteraction->createDirectory(\'/home/invictus/...\', 493, false, NULL)#1 /home/invictus/public_html/administrator/components/com_jchoptimize/lib/vendor/laminas/laminas-cache-storage-adapter-filesystem/src/Filesystem.php(822): _JchOptimizeVendor\\V91\\Laminas\\Cache\\Storage\\Adapter\\Filesystem->prepareDirectoryStructure(\'/home/invictus/...\')#2 /home/invictus/public_html/administrator/components/com_jchoptimize/lib/vendor/laminas/laminas-cache/src/Storage/Adapter/AbstractAdapter.php(562): _JchOptimizeVendor\\V91\\Laminas\\Cache\\Storage\\Adapter\\Filesystem->internalSetItem(\'1f0657c3091f472...\', \'s:59:"<html lan...\')#3 /home/invictus/public_html/administrator/components/com_jchoptimize/lib/vendor/laminas/laminas-cache-storage-adapter-filesystem/src/Filesystem.php(716): _JchOptimizeVendor\\V91\\Laminas\\Cache\\Storage\\Adapter\\AbstractAdapter->setItem(\'1f0657c3091f472...\', \'<html lang><hea...\')#4 /home/invictus/public_html/administrator/components/com_jchoptimize/lib/src/PageCache/PageCache.php(223): _JchOptimizeVendor\\V91\\Laminas\\Cache\\Storage\\Adapter\\Filesystem->setItem(\'1f0657c3091f472...\', \'<html lang><hea...\')#5 /home/invictus/public_html/administrator/components/com_jchoptimize/lib/src/PageCache/CaptureCache.php(177): JchOptimize\\Core\\PageCache\\PageCache->store(\'<!DOCTYPE html>...\')#6 /home/invictus/public_html/plugins/system/jchpagecache/src/Extension/JchPageCache.php(224): JchOptimize\\Core\\PageCache\\CaptureCache->store(\'<!DOCTYPE html>...\')#7 /home/invictus/public_html/libraries/vendor/joomla/event/src/Dispatcher.php(486): CodeAlfa\\Plugin\\System\\JchPageCache\\Extension\\JchPageCache->onAfterRespond(Object(Joomla\\Event\\Event))#8 /home/invictus/public_html/libraries/src/Application/CMSApplication.php(332): Joomla\\Event\\Dispatcher->dispatch(\'onAfterRespond\')#9 /home/invictus/public_html/includes/app.php(61): Joomla\\CMS\\Application\\CMSApplication->execute()#10 /home/invictus/public_html/index.php(32): require_once(\'/home/invictus/...\')#11 {main}') (/home/invictus/public_html/administrator/components/com_jchoptimize/lib/src/Laminas/Plugins/ExceptionHandler.php:27) at JchOptimize\Core\Laminas\Plugins\ExceptionHandler::logException(object(RuntimeException)) (/home/invictus/public_html/administrator/components/com_jchoptimize/lib/vendor/laminas/laminas-cache/src/Storage/Plugin/ExceptionHandler.php:55) at _JchOptimizeVendor\V91\Laminas\Cache\Storage\Plugin\ExceptionHandler->onException(object(ExceptionEvent)) (/home/invictus/public_html/administrator/components/com_jchoptimize/lib/vendor/laminas/laminas-eventmanager/src/EventManager.php:270) at _JchOptimizeVendor\V91\Laminas\EventManager\EventManager->triggerListeners(object(ExceptionEvent)) (/home/invictus/public_html/administrator/components/com_jchoptimize/lib/vendor/laminas/laminas-eventmanager/src/EventManager.php:148) at _JchOptimizeVendor\V91\Laminas\EventManager\EventManager->triggerEvent(object(ExceptionEvent)) (/home/invictus/public_html/administrator/components/com_jchoptimize/lib/vendor/laminas/laminas-cache/src/Storage/Adapter/AbstractAdapter.php:224) at _JchOptimizeVendor\V91\Laminas\Cache\Storage\Adapter\AbstractAdapter->triggerException('setItem', object(ArrayObject), false, object(RuntimeException)) (/home/invictus/public_html/administrator/components/com_jchoptimize/lib/vendor/laminas/laminas-cache/src/Storage/Adapter/AbstractAdapter.php:566) at _JchOptimizeVendor\V91\Laminas\Cache\Storage\Adapter\AbstractAdapter->setItem('1f0657c3091f4725b0e385d73f2807c4', '<html lang><head><title></title></head><body></body></html>') (/home/invictus/public_html/administrator/components/com_jchoptimize/lib/vendor/laminas/laminas-cache-storage-adapter-filesystem/src/Filesystem.php:716) at _JchOptimizeVendor\V91\Laminas\Cache\Storage\Adapter\Filesystem->setItem('1f0657c3091f4725b0e385d73f2807c4', '<html lang><head><title></title></head><body></body></html>') (/home/invictus/public_html/administrator/components/com_jchoptimize/lib/src/PageCache/PageCache.php:223) at JchOptimize\Core\PageCache\PageCache->store('<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="hu-hu" lang="hu-hu" dir="ltr"> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <title>Hiba: 0 Resource 'Psr\\Log\\LoggerInterface' has not been registered with the container.</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" href="/templates/ja_atoms/css/error.css" type="text/css" /> <link rel="stylesheet" href="/templates/ja_atoms/fonts/HKGrotesk/stylesheet.css" type="text/css" /> <link href="/templates/ja_atoms/favicon.ico" rel="shortcut icon" type="image/vnd.microsoft.icon" /> </head> <body class="page-error"> <div class="main"> <div class="error"> <div id="outline"> <div id="errorboxoutline"> <div class="error-code"><span class="lastfirst">0</span> </div> <div class="wrap-text"> <div class="error-message"><h2><span>Resource \'Psr\\Log\\LoggerInterface\' has not been registered with the container.</span></h2></div> <div id="errorboxbody"> <p>Kérjük, próbálkozzon a következő oldalak egyikével:</p> </div> <a class="button-home" href="/index.php" title="Ugrás a főlapra">Főlap<span class="ion-android-arrow-forward"></span></a> </div> </div> </div> </div> </div> </body> </html> ') (/home/invictus/public_html/administrator/components/com_jchoptimize/lib/src/PageCache/CaptureCache.php:177) at JchOptimize\Core\PageCache\CaptureCache->store('<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="hu-hu" lang="hu-hu" dir="ltr"> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <title>Hiba: 0 Resource 'Psr\\Log\\LoggerInterface' has not been registered with the container.</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" href="/templates/ja_atoms/css/error.css" type="text/css" /> <link rel="stylesheet" href="/templates/ja_atoms/fonts/HKGrotesk/stylesheet.css" type="text/css" /> <link href="/templates/ja_atoms/favicon.ico" rel="shortcut icon" type="image/vnd.microsoft.icon" /> </head> <body class="page-error"> <div class="main"> <div class="error"> <div id="outline"> <div id="errorboxoutline"> <div class="error-code"><span class="lastfirst">0</span> </div> <div class="wrap-text"> <div class="error-message"><h2><span>Resource \'Psr\\Log\\LoggerInterface\' has not been registered with the container.</span></h2></div> <div id="errorboxbody"> <p>Kérjük, próbálkozzon a következő oldalak egyikével:</p> </div> <a class="button-home" href="/index.php" title="Ugrás a főlapra">Főlap<span class="ion-android-arrow-forward"></span></a> </div> </div> </div> </div> </div> </body> </html> ') (/home/invictus/public_html/plugins/system/jchpagecache/src/Extension/JchPageCache.php:224) at CodeAlfa\Plugin\System\JchPageCache\Extension\JchPageCache->onAfterRespond(object(Event)) (/home/invictus/public_html/libraries/vendor/joomla/event/src/Dispatcher.php:486) at Joomla\Event\Dispatcher->dispatch('onAfterRespond') (/home/invictus/public_html/libraries/src/Application/CMSApplication.php:332) at Joomla\CMS\Application\CMSApplication->execute() (/home/invictus/public_html/includes/app.php:61) at require_once('/home/invictus/public_html/includes/app.php') (/home/invictus/public_html/index.php:32) |