Exception UnsupportedCacheException

HTTP 500 Whoops, looks like something went wrong.

The memcached Cache Storage is not supported on this platform.

Exceptions 2

Joomla\CMS\Cache\Exception\ UnsupportedCacheException

  1.             }
  2.         }
  3.         // Validate the cache storage is supported on this platform
  4.         if (!$class::isSupported()) {
  5.             throw new UnsupportedCacheException(sprintf('The %s Cache Storage is not supported on this platform.'$handler));
  6.         }
  7.         return new $class($options);
  8.     }
  1.         if (isset(self::$_handler[$hash])) {
  2.             return self::$_handler[$hash];
  3.         }
  4.         self::$_handler[$hash] = CacheStorage::getInstance($this->_options['storage'], $this->_options);
  5.         return self::$_handler[$hash];
  6.     }
  7.     /**
  1.         }
  2.         // Get the default group
  3.         $group $group ?: $this->_options['defaultgroup'];
  4.         return $this->_getStorage()->contains($id$group);
  5.     }
  6.     /**
  7.      * Get cached data by ID and group
  8.      *
  1.      *
  2.      * @since   1.7.0
  3.      */
  4.     public function __call($name$arguments)
  5.     {
  6.         return \call_user_func_array([$this->cache$name], $arguments);
  7.     }
  8.     /**
  9.      * Returns a reference to a cache adapter object, always creating it
  10.      *
  1.             $tag '';
  2.         }
  3.         $cacheId 'templates0' $tag;
  4.         if ($cache->contains($cacheId)) {
  5.             $templates $cache->get($cacheId);
  6.         } else {
  7.             $templates $this->bootComponent('templates')->getMVCFactory()
  8.                 ->createModel('Style''Administrator')->getSiteTemplates();
  1.     public function render(\Throwable $error): string
  2.     {
  3.         $app Factory::getApplication();
  4.         // Get the current template from the application
  5.         $template $app->getTemplate(true);
  6.         // Push the error object into the document
  7.         $this->getDocument()->setError($error);
  8.         // Add registry file for the template asset
  1.             // Reset the document object in the factory, this gives us a clean slate and lets everything render properly
  2.             Factory::$document $renderer->getDocument();
  3.             Factory::getApplication()->loadDocument(Factory::$document);
  4.             $data $renderer->render($error);
  5.             // If nothing was rendered, just use the message from the Exception
  6.             if (empty($data)) {
  7.                 $data $error->getMessage();
  8.             }
  1.      * @since   3.10.0
  2.      */
  3.     public static function handleException(\Throwable $error)
  4.     {
  5.         static::logException($error);
  6.         static::render($error);
  7.     }
  8.     /**
  9.      * Render the error page based on an exception.
  10.      *
  1.             );
  2.             // Trigger the onError event.
  3.             $this->triggerEvent('onError'$event);
  4.             ExceptionHandler::handleException($event->getError());
  5.         }
  6.         // Trigger the onBeforeRespond event.
  7.         $this->getDispatcher()->dispatch('onBeforeRespond');
  1. // Set the application as global app
  2. \Joomla\CMS\Factory::$application $app;
  3. // Execute the application.
  4. $app->execute();
require_once('/var/www/vhosts/kirche-kirchdorf-langreder.de/httpdocs/includes/app.php') in /var/www/vhosts/kirche-kirchdorf-langreder.de/httpdocs/index.php (line 32)
  1.  * define() is used rather than "const" to not error for PHP 5.2 and lower
  2.  */
  3. define('_JEXEC'1);
  4. // Run the application - All executable code should be triggered through this file
  5. require_once dirname(__FILE__) . '/includes/app.php';

Exception

Unknown Task

  1.                     }
  2.                     $lang Factory::getLanguage();
  3.                     $lang->load("com_jevents"JPATH_ADMINISTRATOR);
  4.                     if (strpos($task'.') == false) {
  5.                         throw new Exception(Text::_('COM_JEVENTS_UNKNOWN_TASK'), 404);
  6.                         return false;
  7.                     }
  8.                     list($controllerName$cmd) = explode('.'$task);
  9.                     $controllerName strtolower($controllerName);
  1.             for ($i 0$i $total$i++) {
  2.                 $segments[$i] = preg_replace('/-/'':'$segments[$i], 1);
  3.             }
  4.             return $function($segments);
  5.         }
  6.         return [];
  7.     }
  8. }
  1.             if (\count($segments)) {
  2.                 // Handle component route
  3.                 $component preg_replace('/[^A-Z0-9_\.-]/i'''$uri->getVar('option'));
  4.                 $crouter   $this->getComponentRouter($component);
  5.                 $uri->setQuery(array_merge($uri->getQuery(true), $crouter->parse($segments)));
  6.             }
  7.             $route implode('/'$segments);
  8.         }
  1.         if (!\array_key_exists('parse' $stage$this->rules)) {
  2.             throw new \InvalidArgumentException(sprintf('The %s stage is not registered. (%s)'$stage__METHOD__));
  3.         }
  4.         foreach ($this->rules['parse' $stage] as $rule) {
  5.             $rule($this$uri);
  6.         }
  7.     }
  8.     /**
  9.      * Process the build uri query data based on custom defined rules
  1.     {
  2.         // Do the preprocess stage of the URL parse process
  3.         $this->processParseRules($uriself::PROCESS_BEFORE);
  4.         // Do the main stage of the URL parse process
  5.         $this->processParseRules($uri);
  6.         // Do the postprocess stage of the URL parse process
  7.         $this->processParseRules($uriself::PROCESS_AFTER);
  8.         // Check if all parts of the URL have been parsed.
  1.         // Get the full request URI.
  2.         $uri = clone Uri::getInstance();
  3.         // It is not possible to inject the SiteRouter as it requires a SiteApplication
  4.         // and we would end in an infinite loop
  5.         $result $this->getContainer()->get(SiteRouter::class)->parse($uritrue);
  6.         $active $this->getMenu()->getActive();
  7.         if (
  8.             $active !== null
  1.         // Mark afterInitialise in the profiler.
  2.         JDEBUG $this->profiler->mark('afterInitialise') : null;
  3.         // Route the application
  4.         $this->route();
  5.         // Mark afterRoute in the profiler.
  6.         JDEBUG $this->profiler->mark('afterRoute') : null;
  7.         if (!$this->isHandlingMultiFactorAuthentication()) {
  1.             $this->sanityCheckSystemVariables();
  2.             $this->setupLogging();
  3.             $this->createExtensionNamespaceMap();
  4.             // Perform application routines.
  5.             $this->doExecute();
  6.             // If we have an application document object, render it.
  7.             if ($this->document instanceof \Joomla\CMS\Document\Document) {
  8.                 // Render the application output.
  9.                 $this->render();
  1. // Set the application as global app
  2. \Joomla\CMS\Factory::$application $app;
  3. // Execute the application.
  4. $app->execute();
require_once('/var/www/vhosts/kirche-kirchdorf-langreder.de/httpdocs/includes/app.php') in /var/www/vhosts/kirche-kirchdorf-langreder.de/httpdocs/index.php (line 32)
  1.  * define() is used rather than "const" to not error for PHP 5.2 and lower
  2.  */
  3. define('_JEXEC'1);
  4. // Run the application - All executable code should be triggered through this file
  5. require_once dirname(__FILE__) . '/includes/app.php';

Stack Traces 2

[2/2] UnsupportedCacheException
Joomla\CMS\Cache\Exception\UnsupportedCacheException:
The memcached Cache Storage is not supported on this platform.

  at /var/www/vhosts/kirche-kirchdorf-langreder.de/httpdocs/libraries/src/Cache/CacheStorage.php:178
  at Joomla\CMS\Cache\CacheStorage::getInstance()
     (/var/www/vhosts/kirche-kirchdorf-langreder.de/httpdocs/libraries/src/Cache/Cache.php:481)
  at Joomla\CMS\Cache\Cache->_getStorage()
     (/var/www/vhosts/kirche-kirchdorf-langreder.de/httpdocs/libraries/src/Cache/Cache.php:209)
  at Joomla\CMS\Cache\Cache->contains()
     (/var/www/vhosts/kirche-kirchdorf-langreder.de/httpdocs/libraries/src/Cache/CacheController.php:75)
  at Joomla\CMS\Cache\CacheController->__call()
     (/var/www/vhosts/kirche-kirchdorf-langreder.de/httpdocs/libraries/src/Application/SiteApplication.php:449)
  at Joomla\CMS\Application\SiteApplication->getTemplate()
     (/var/www/vhosts/kirche-kirchdorf-langreder.de/httpdocs/libraries/src/Error/Renderer/HtmlRenderer.php:50)
  at Joomla\CMS\Error\Renderer\HtmlRenderer->render()
     (/var/www/vhosts/kirche-kirchdorf-langreder.de/httpdocs/libraries/src/Exception/ExceptionHandler.php:126)
  at Joomla\CMS\Exception\ExceptionHandler::render()
     (/var/www/vhosts/kirche-kirchdorf-langreder.de/httpdocs/libraries/src/Exception/ExceptionHandler.php:72)
  at Joomla\CMS\Exception\ExceptionHandler::handleException()
     (/var/www/vhosts/kirche-kirchdorf-langreder.de/httpdocs/libraries/src/Application/CMSApplication.php:322)
  at Joomla\CMS\Application\CMSApplication->execute()
     (/var/www/vhosts/kirche-kirchdorf-langreder.de/httpdocs/includes/app.php:61)
  at require_once('/var/www/vhosts/kirche-kirchdorf-langreder.de/httpdocs/includes/app.php')
     (/var/www/vhosts/kirche-kirchdorf-langreder.de/httpdocs/index.php:32)                
[1/2] Exception
Exception:
Unknown Task

  at /var/www/vhosts/kirche-kirchdorf-langreder.de/httpdocs/components/com_jevents/router.php:597
  at JEventsParseRoute()
     (/var/www/vhosts/kirche-kirchdorf-langreder.de/httpdocs/libraries/src/Component/Router/RouterLegacy.php:104)
  at Joomla\CMS\Component\Router\RouterLegacy->parse()
     (/var/www/vhosts/kirche-kirchdorf-langreder.de/httpdocs/libraries/src/Router/SiteRouter.php:287)
  at Joomla\CMS\Router\SiteRouter->parseSefRoute()
     (/var/www/vhosts/kirche-kirchdorf-langreder.de/httpdocs/libraries/src/Router/Router.php:384)
  at Joomla\CMS\Router\Router->processParseRules()
     (/var/www/vhosts/kirche-kirchdorf-langreder.de/httpdocs/libraries/src/Router/Router.php:147)
  at Joomla\CMS\Router\Router->parse()
     (/var/www/vhosts/kirche-kirchdorf-langreder.de/httpdocs/libraries/src/Application/SiteApplication.php:746)
  at Joomla\CMS\Application\SiteApplication->route()
     (/var/www/vhosts/kirche-kirchdorf-langreder.de/httpdocs/libraries/src/Application/SiteApplication.php:232)
  at Joomla\CMS\Application\SiteApplication->doExecute()
     (/var/www/vhosts/kirche-kirchdorf-langreder.de/httpdocs/libraries/src/Application/CMSApplication.php:293)
  at Joomla\CMS\Application\CMSApplication->execute()
     (/var/www/vhosts/kirche-kirchdorf-langreder.de/httpdocs/includes/app.php:61)
  at require_once('/var/www/vhosts/kirche-kirchdorf-langreder.de/httpdocs/includes/app.php')
     (/var/www/vhosts/kirche-kirchdorf-langreder.de/httpdocs/index.php:32)