// 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(\'c29dbad93c59673...\', \'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(\'c29dbad93c59673...\', \'<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(\'c29dbad93c59673...\', \'<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-be/jchoptimizetags-80" 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(\'c29dbad93c59673...\', \'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(\'c29dbad93c59673...\', \'<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(\'c29dbad93c59673...\', \'<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(\'c29dbad93c59673...\', \'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(\'c29dbad93c59673...\', \'<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(\'c29dbad93c59673...\', \'<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-be/jchoptimizetags-80" 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(\'c29dbad93c59673...\', \'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(\'c29dbad93c59673...\', \'<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(\'c29dbad93c59673...\', \'<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('c29dbad93c596738b2356b8d7c4c47c5', '<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('c29dbad93c596738b2356b8d7c4c47c5', '<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="en-GB" lang="en-GB" dir="ltr"><head><meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" /><meta charset="utf-8"> <meta name="robots" content="NOINDEX, NOFOLLOW, NOARCHIVE, NOSNIPPET"> <meta name="generator" content="MYOB"> <title>Villeroy & Boch La Belle térben álló kád 1800 x 800 mm | UBQ180LAB9W1V - Tegye fel kérdését termék adatai</title> <link href="https://www.invictusburkolat.hu/kadak/villeroy-boch-la-belle-terben-allo-kad-1800-x-800-mm-1-burkololap" rel="canonical"> <link href="/favicon.ico" rel="icon" type="image/vnd.microsoft.icon"><link href="/media/plg_captcha_recaptcha_invisible/css/recaptcha_invisible.min.css?bc132cde989ced0451cd3acc84fa6cf1" rel="stylesheet" /> <link href="/plugins/system/t4/themes/base/vendors/font-awesome5/css/all.min.css?bc132cde989ced0451cd3acc84fa6cf1" rel="stylesheet" /> <link href="/plugins/system/t4/themes/base/vendors/font-awesome/css/font-awesome.min.css?bc132cde989ced0451cd3acc84fa6cf1" rel="stylesheet" /> <link href="/plugins/system/t4/themes/base/vendors/icomoon/css/icomoon.css?bc132cde989ced0451cd3acc84fa6cf1" rel="stylesheet" /> <link href="/templates/ja_atoms/js/owl-carousel/owl.carousel.min.css?bc132cde989ced0451cd3acc84fa6cf1" rel="stylesheet" /> <link href="/media/vendor/joomla-custom-elements/css/joomla-alert.min.css?0.2.0" rel="stylesheet" /> <link href="/components/com_virtuemart/assets/css/vm-ltr-common.css?vmver=67bf81a1" rel="stylesheet" /> <link href="/components/com_virtuemart/assets/css/vm-ltr-site.css?vmver=67bf81a1" rel="stylesheet" /> <link href="/components/com_virtuemart/assets/css/validationEngine.template.css?vmver=67bf81a1" rel="stylesheet" /> <link href="/components/com_virtuemart/assets/css/validationEngine.jquery.css?vmver=67bf81a1" rel="stylesheet" /> <link href="https://fonts.googleapis.com/css?family=Roboto%3A100%2C100i%2C300%2C300i%2C400%2C400i%2C500%2C500i%2C700%2C700i%2C900%2C900i%7CNoto+Sans%3A400%2C400i%2C700%2C700i" rel="stylesheet" /> <link href="/templates/ja_atoms/css/template.css?a27bb23b4f9ccd2299546a38b2b041e7" rel="stylesheet" /> <link href="/media/t4/css/9-sub.css?be6a7286f2d592ac009dca2d5f235a43" rel="stylesheet" /> <link href="/templates/ja_atoms/local/css/custom.css?d9b655c23446a9bc382fff96eef9d579" rel="stylesheet" /><script src="/media/plg_captcha_recaptcha_invisible/js/recaptcha.min.js?bc132cde989ced0451cd3acc84fa6cf1" defer></script> <script src="https://www.google.com/recaptcha/api.js?onload=JoomlainitReCaptchaInvisible&render=explicit&hl=hu-HU" defer></script> <script src="/media/vendor/jquery/js/jquery.min.js?3.7.1"></script> <script src="/media/legacy/js/jquery-noconflict.min.js?647005fc12b79b3ca2bb30c059899d5994e3e34d"></script> <script src="/media/vendor/jquery-migrate/js/jquery-migrate.min.js?3.4.1"></script> <script src="/plugins/system/t4/themes/base/vendors/bootstrap/js/bootstrap.bundle.min.js?bc132cde989ced0451cd3acc84fa6cf1"></script> <script src="/templates/ja_atoms/js/owl-carousel/owl.carousel.min.js?bc132cde989ced0451cd3acc84fa6cf1"></script> <script src="/templates/ja_atoms/js/imagesloaded.pkgd.min.js?bc132cde989ced0451cd3acc84fa6cf1"></script> <script src="/templates/ja_atoms/js/jquery.cookie.js?bc132cde989ced0451cd3acc84fa6cf1"></script> <script type="application/json" class="joomla-script-options new">{"joomla.jtext":{"ERROR":"Hiba","MESSAGE":"\\u00dczenet","NOTICE":"Megjegyz\\u00e9s","WARNING":"Figyelmeztet\\u00e9s","JCLOSE":"Bez\\u00e1r\\u00e1s","JOK":"Rendben","JOPEN":"Megnyit\\u00e1s"},"system.paths":{"root":"","rootFull":"https:\\/\\/www.invictusburkolat.hu\\/","base":"","baseFull":"https:\\/\\/www.invictusburkolat.hu\\/"},"csrf.token":"1a650b93202b9bac925bdff2c89bb9d0"}</script> <script src="/media/system/js/core.min.js?37ffe4186289eba9c5df81bea44080aff77b9684"></script> <script src="/media/system/js/messages-es5.min.js?c29829fd2432533d05b15b771f86c6637708bd9d" nomodule defer></script> <script src="/media/system/js/messages.min.js?7f7aa28ac8e8d42145850e8b45b3bc82ff9a6411" type="module"></script> <script src="/components/com_virtuemart/assets/js/jquery-ui.min.js?vmver=1.13.2"></script> <script src="/components/com_virtuemart/assets/js/jquery.ui.autocomplete.html.js"></script> <script src="/components/com_virtuemart/assets/js/jquery.noconflict.js" async></script> <script src="/components/com_virtuemart/assets/js/vmsite.js?vmver=67bf81a1"></script> <script src="/components/com_virtuemart/assets/js/jquery.validationEngine.js?vmver=67bf81a1"></script> <script src="/components/com_virtuemart/assets/js/languages/jquery.validationEngine-en.js?vmver=67bf81a1"></script> <script src="/templates/ja_atoms/js/template.js"></script> <script src="/plugins/system/t4/themes/base/js/base.js?bc132cde989ced0451cd3acc84fa6cf1"></script> <script>//<![CDATA[ if (typeof Virtuemart === "undefined"){ var Virtuemart = {};}var vmSiteurl = \'https://www.invictusburkolat.hu/\' ;Virtuemart.vmSiteurl = vmSiteurl;var vmLang = \'&lang=hu\';Virtuemart.vmLang = vmLang; var vmLangTag = \'hu\';Virtuemart.vmLangTag = vmLangTag;var Itemid = \'&Itemid=400\';Virtuemart.addtocart_popup = "1" ; var vmCartError = Virtuemart.vmCartError = "Hiba történt a Kosár frissítésekor.";var usefancy = true; //]]></script><!--[if lt IE 9]> <script src="/media/jui/js/html5.js"></script><![endif]--></head><body class="contentpane site-default navigation-default theme-default layout-default com_virtuemart view-productdetails item-400"> <div id="system-message-container" aria-live="polite"></div> <div class="ask-a-question-view"> <h2>Tegye fel kérdését <button id="close-iframe" class="btn btn-default btn-sm pull-right" type="button"><span class="glyphicon glyphicon-remove"></span> Bezár</button></h2> <div class="form-field"> <form method="post" class="form-validate" action="/kadak/villeroy-boch-la-belle-terben-allo-kad-1800-x-800-mm-1-burkololap?tmpl=component" name="askform" id="askform"> <div class="askform"> <div class="form-group"> <label for="name">Név : </label> <input type="text" class="validate[required,minSize[3],maxSize[64]] form-control" value="<br /><b>Warning</b>: Trying to access array offset on value of type int in <b>/home/invictus/public_html/templates/ja_atoms/html/com_virtuemart/askquestion/form.php</b> on line <b>61</b><br />" name="name" id="name" size="30" validation="required name"/> </div> <div class="form-group"> <label for="email">E-mail : </label> <input type="text" class="validate[required,custom[email]] form-control" value="<br /><b>Warning</b>: Trying to access array offset on value of type int in <b>/home/invictus/public_html/templates/ja_atoms/html/com_virtuemart/askquestion/form.php</b> on line <b>65</b><br />" name="email" id="email" size="30" validation="required email"/> </div> <div class="form-group"> <label for="phone">Telefon : </label> <input type="text" class="validate[required,minSize[8],maxSize[15]] form-control" value="<br /><b>Warning</b>: Undefined property: VirtueMartViewAskquestion::$phone in <b>/home/invictus/public_html/templates/ja_atoms/html/com_virtuemart/askquestion/form.php</b> on line <b>69</b><br /><br /><b>Warning</b>: Undefined variable $askQuestionData in <b>/home/invictus/public_html/templates/ja_atoms/html/com_virtuemart/askquestion/form.php</b> on line <b>69</b><br /><br /><b>Warning</b>: Trying to access array offset on value of type null in <b>/home/invictus/public_html/templates/ja_atoms/html/com_virtuemart/askquestion/form.php</b> on line <b>69</b><br />" name="phone" id="name" size="30" validation="required phone"/> </div> <div class="form-group"> <label for="email-type">Melyik üzletből szeretne ajánlatot kérni?</label> <select name="email-type" id="email-type" class="form-control"> <option value="option1">Budapest</option> <option value="option2">Budaörs</option> </select> </div> <div class="form-group"> <label for="comment">Kérjük írja meg a kérdését a termékről</label> <textarea title="Kérjük írja meg a kérdését a termékről" class="validate[required,minSize[0],maxSize[2000]] field form-control" id="comment" name="comment" rows="8"><br /><b>Warning</b>: Trying to access array offset on value of type int in <b>/home/invictus/public_html/templates/ja_atoms/html/com_virtuemart/askquestion/form.php</b> on line <b>80</b><br /></textarea> </div> <div id="dynamic_recaptcha_1" class="g-recaptcha required g-recaptcha" data-sitekey="6LfWelomAAAAAIokTKhpjpeJzbk_SYpG6ocEjui-" data-badge="bottomright" data-size="invisible" data-tabindex="0" data-callback="" data-expired-callback="" data-error-callback=""></div> <div class="form-group row"> <div class="col-xs-5"> <input class="highlight-button btn btn-primary margin-top-15" type="submit" name="submit_ask" title="Kérdés elküldése" value="Kérdés elküldése" /> </div> <div class="col-xs-7 text-right"> </div> </div> </div> <input type="hidden" name="virtuemart_product_id" value="43257" /> <input type="hidden" name="tmpl" value="component" /> <input type="hidden" name="view" value="productdetails" /> <input type="hidden" name="option" value="com_virtuemart" /> <input type="hidden" name="virtuemart_category_id" value="55" /> <input type="hidden" name="task" value="mailAskquestion" /> <input type="hidden" name="1a650b93202b9bac925bdff2c89bb9d0" value="1"> </form> </div> </div><script>jQuery(window).load(function(){ var height = 680; jQuery(\'#form-collapse iframe\', parent.document).css(\'min-height\', height); jQuery(\'#form-collapse div.vm-preloader\', parent.document).addClass(\'hide\');});jQuery(\'#close-iframe\').click(function(){ jQuery(\'#form-collapse\', parent.document).collapse(\'toggle\');});// Remove collapse form login, hide the toggle buttonjQuery(\'#vm-login\').removeClass(\'collapse\').addClass(\'iframe-login\').find(\'form\').removeClass(\'form-inline\');jQuery(\'button.vm-login\').hide();</script> <script id="vEngine-js" type="text/javascript" >//<![CDATA[ jQuery(document).ready(function($) { $(\'#adminForm\').validationEngine(); }); //]]></script> <script id="askform-js" type="text/javascript" >//<![CDATA[ jQuery(function($){ $("#askform").validationEngine("attach"); $("#comment").keyup( function () { var result = $(this).val(); $("#counter").val( result.length ); }); }); //]]></script> </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="en-GB" lang="en-GB" dir="ltr"><head><meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" /><meta charset="utf-8"> <meta name="robots" content="NOINDEX, NOFOLLOW, NOARCHIVE, NOSNIPPET"> <meta name="generator" content="MYOB"> <title>Villeroy & Boch La Belle térben álló kád 1800 x 800 mm | UBQ180LAB9W1V - Tegye fel kérdését termék adatai</title> <link href="https://www.invictusburkolat.hu/kadak/villeroy-boch-la-belle-terben-allo-kad-1800-x-800-mm-1-burkololap" rel="canonical"> <link href="/favicon.ico" rel="icon" type="image/vnd.microsoft.icon"><link href="/media/plg_captcha_recaptcha_invisible/css/recaptcha_invisible.min.css?bc132cde989ced0451cd3acc84fa6cf1" rel="stylesheet" /> <link href="/plugins/system/t4/themes/base/vendors/font-awesome5/css/all.min.css?bc132cde989ced0451cd3acc84fa6cf1" rel="stylesheet" /> <link href="/plugins/system/t4/themes/base/vendors/font-awesome/css/font-awesome.min.css?bc132cde989ced0451cd3acc84fa6cf1" rel="stylesheet" /> <link href="/plugins/system/t4/themes/base/vendors/icomoon/css/icomoon.css?bc132cde989ced0451cd3acc84fa6cf1" rel="stylesheet" /> <link href="/templates/ja_atoms/js/owl-carousel/owl.carousel.min.css?bc132cde989ced0451cd3acc84fa6cf1" rel="stylesheet" /> <link href="/media/vendor/joomla-custom-elements/css/joomla-alert.min.css?0.2.0" rel="stylesheet" /> <link href="/components/com_virtuemart/assets/css/vm-ltr-common.css?vmver=67bf81a1" rel="stylesheet" /> <link href="/components/com_virtuemart/assets/css/vm-ltr-site.css?vmver=67bf81a1" rel="stylesheet" /> <link href="/components/com_virtuemart/assets/css/validationEngine.template.css?vmver=67bf81a1" rel="stylesheet" /> <link href="/components/com_virtuemart/assets/css/validationEngine.jquery.css?vmver=67bf81a1" rel="stylesheet" /> <link href="https://fonts.googleapis.com/css?family=Roboto%3A100%2C100i%2C300%2C300i%2C400%2C400i%2C500%2C500i%2C700%2C700i%2C900%2C900i%7CNoto+Sans%3A400%2C400i%2C700%2C700i" rel="stylesheet" /> <link href="/templates/ja_atoms/css/template.css?a27bb23b4f9ccd2299546a38b2b041e7" rel="stylesheet" /> <link href="/media/t4/css/9-sub.css?be6a7286f2d592ac009dca2d5f235a43" rel="stylesheet" /> <link href="/templates/ja_atoms/local/css/custom.css?d9b655c23446a9bc382fff96eef9d579" rel="stylesheet" /><script src="/media/plg_captcha_recaptcha_invisible/js/recaptcha.min.js?bc132cde989ced0451cd3acc84fa6cf1" defer></script> <script src="https://www.google.com/recaptcha/api.js?onload=JoomlainitReCaptchaInvisible&render=explicit&hl=hu-HU" defer></script> <script src="/media/vendor/jquery/js/jquery.min.js?3.7.1"></script> <script src="/media/legacy/js/jquery-noconflict.min.js?647005fc12b79b3ca2bb30c059899d5994e3e34d"></script> <script src="/media/vendor/jquery-migrate/js/jquery-migrate.min.js?3.4.1"></script> <script src="/plugins/system/t4/themes/base/vendors/bootstrap/js/bootstrap.bundle.min.js?bc132cde989ced0451cd3acc84fa6cf1"></script> <script src="/templates/ja_atoms/js/owl-carousel/owl.carousel.min.js?bc132cde989ced0451cd3acc84fa6cf1"></script> <script src="/templates/ja_atoms/js/imagesloaded.pkgd.min.js?bc132cde989ced0451cd3acc84fa6cf1"></script> <script src="/templates/ja_atoms/js/jquery.cookie.js?bc132cde989ced0451cd3acc84fa6cf1"></script> <script type="application/json" class="joomla-script-options new">{"joomla.jtext":{"ERROR":"Hiba","MESSAGE":"\\u00dczenet","NOTICE":"Megjegyz\\u00e9s","WARNING":"Figyelmeztet\\u00e9s","JCLOSE":"Bez\\u00e1r\\u00e1s","JOK":"Rendben","JOPEN":"Megnyit\\u00e1s"},"system.paths":{"root":"","rootFull":"https:\\/\\/www.invictusburkolat.hu\\/","base":"","baseFull":"https:\\/\\/www.invictusburkolat.hu\\/"},"csrf.token":"1a650b93202b9bac925bdff2c89bb9d0"}</script> <script src="/media/system/js/core.min.js?37ffe4186289eba9c5df81bea44080aff77b9684"></script> <script src="/media/system/js/messages-es5.min.js?c29829fd2432533d05b15b771f86c6637708bd9d" nomodule defer></script> <script src="/media/system/js/messages.min.js?7f7aa28ac8e8d42145850e8b45b3bc82ff9a6411" type="module"></script> <script src="/components/com_virtuemart/assets/js/jquery-ui.min.js?vmver=1.13.2"></script> <script src="/components/com_virtuemart/assets/js/jquery.ui.autocomplete.html.js"></script> <script src="/components/com_virtuemart/assets/js/jquery.noconflict.js" async></script> <script src="/components/com_virtuemart/assets/js/vmsite.js?vmver=67bf81a1"></script> <script src="/components/com_virtuemart/assets/js/jquery.validationEngine.js?vmver=67bf81a1"></script> <script src="/components/com_virtuemart/assets/js/languages/jquery.validationEngine-en.js?vmver=67bf81a1"></script> <script src="/templates/ja_atoms/js/template.js"></script> <script src="/plugins/system/t4/themes/base/js/base.js?bc132cde989ced0451cd3acc84fa6cf1"></script> <script>//<![CDATA[ if (typeof Virtuemart === "undefined"){ var Virtuemart = {};}var vmSiteurl = \'https://www.invictusburkolat.hu/\' ;Virtuemart.vmSiteurl = vmSiteurl;var vmLang = \'&lang=hu\';Virtuemart.vmLang = vmLang; var vmLangTag = \'hu\';Virtuemart.vmLangTag = vmLangTag;var Itemid = \'&Itemid=400\';Virtuemart.addtocart_popup = "1" ; var vmCartError = Virtuemart.vmCartError = "Hiba történt a Kosár frissítésekor.";var usefancy = true; //]]></script><!--[if lt IE 9]> <script src="/media/jui/js/html5.js"></script><![endif]--></head><body class="contentpane site-default navigation-default theme-default layout-default com_virtuemart view-productdetails item-400"> <div id="system-message-container" aria-live="polite"></div> <div class="ask-a-question-view"> <h2>Tegye fel kérdését <button id="close-iframe" class="btn btn-default btn-sm pull-right" type="button"><span class="glyphicon glyphicon-remove"></span> Bezár</button></h2> <div class="form-field"> <form method="post" class="form-validate" action="/kadak/villeroy-boch-la-belle-terben-allo-kad-1800-x-800-mm-1-burkololap?tmpl=component" name="askform" id="askform"> <div class="askform"> <div class="form-group"> <label for="name">Név : </label> <input type="text" class="validate[required,minSize[3],maxSize[64]] form-control" value="<br /><b>Warning</b>: Trying to access array offset on value of type int in <b>/home/invictus/public_html/templates/ja_atoms/html/com_virtuemart/askquestion/form.php</b> on line <b>61</b><br />" name="name" id="name" size="30" validation="required name"/> </div> <div class="form-group"> <label for="email">E-mail : </label> <input type="text" class="validate[required,custom[email]] form-control" value="<br /><b>Warning</b>: Trying to access array offset on value of type int in <b>/home/invictus/public_html/templates/ja_atoms/html/com_virtuemart/askquestion/form.php</b> on line <b>65</b><br />" name="email" id="email" size="30" validation="required email"/> </div> <div class="form-group"> <label for="phone">Telefon : </label> <input type="text" class="validate[required,minSize[8],maxSize[15]] form-control" value="<br /><b>Warning</b>: Undefined property: VirtueMartViewAskquestion::$phone in <b>/home/invictus/public_html/templates/ja_atoms/html/com_virtuemart/askquestion/form.php</b> on line <b>69</b><br /><br /><b>Warning</b>: Undefined variable $askQuestionData in <b>/home/invictus/public_html/templates/ja_atoms/html/com_virtuemart/askquestion/form.php</b> on line <b>69</b><br /><br /><b>Warning</b>: Trying to access array offset on value of type null in <b>/home/invictus/public_html/templates/ja_atoms/html/com_virtuemart/askquestion/form.php</b> on line <b>69</b><br />" name="phone" id="name" size="30" validation="required phone"/> </div> <div class="form-group"> <label for="email-type">Melyik üzletből szeretne ajánlatot kérni?</label> <select name="email-type" id="email-type" class="form-control"> <option value="option1">Budapest</option> <option value="option2">Budaörs</option> </select> </div> <div class="form-group"> <label for="comment">Kérjük írja meg a kérdését a termékről</label> <textarea title="Kérjük írja meg a kérdését a termékről" class="validate[required,minSize[0],maxSize[2000]] field form-control" id="comment" name="comment" rows="8"><br /><b>Warning</b>: Trying to access array offset on value of type int in <b>/home/invictus/public_html/templates/ja_atoms/html/com_virtuemart/askquestion/form.php</b> on line <b>80</b><br /></textarea> </div> <div id="dynamic_recaptcha_1" class="g-recaptcha required g-recaptcha" data-sitekey="6LfWelomAAAAAIokTKhpjpeJzbk_SYpG6ocEjui-" data-badge="bottomright" data-size="invisible" data-tabindex="0" data-callback="" data-expired-callback="" data-error-callback=""></div> <div class="form-group row"> <div class="col-xs-5"> <input class="highlight-button btn btn-primary margin-top-15" type="submit" name="submit_ask" title="Kérdés elküldése" value="Kérdés elküldése" /> </div> <div class="col-xs-7 text-right"> </div> </div> </div> <input type="hidden" name="virtuemart_product_id" value="43257" /> <input type="hidden" name="tmpl" value="component" /> <input type="hidden" name="view" value="productdetails" /> <input type="hidden" name="option" value="com_virtuemart" /> <input type="hidden" name="virtuemart_category_id" value="55" /> <input type="hidden" name="task" value="mailAskquestion" /> <input type="hidden" name="1a650b93202b9bac925bdff2c89bb9d0" value="1"> </form> </div> </div><script>jQuery(window).load(function(){ var height = 680; jQuery(\'#form-collapse iframe\', parent.document).css(\'min-height\', height); jQuery(\'#form-collapse div.vm-preloader\', parent.document).addClass(\'hide\');});jQuery(\'#close-iframe\').click(function(){ jQuery(\'#form-collapse\', parent.document).collapse(\'toggle\');});// Remove collapse form login, hide the toggle buttonjQuery(\'#vm-login\').removeClass(\'collapse\').addClass(\'iframe-login\').find(\'form\').removeClass(\'form-inline\');jQuery(\'button.vm-login\').hide();</script> <script id="vEngine-js" type="text/javascript" >//<![CDATA[ jQuery(document).ready(function($) { $(\'#adminForm\').validationEngine(); }); //]]></script> <script id="askform-js" type="text/javascript" >//<![CDATA[ jQuery(function($){ $("#askform").validationEngine("attach"); $("#comment").keyup( function () { var result = $(this).val(); $("#counter").val( result.length ); }); }); //]]></script> </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) |