UnsupportedCacheException 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';

Joomla\CMS\Cache\Exception\ UnsupportedCacheException

The memcached Cache Storage is not supported on this platform.

  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.             } else {
  2.                 /** @var OutputController $cache */
  3.                 $cache Factory::getContainer()->get(CacheControllerFactoryInterface::class)
  4.                     ->createCacheController('output', ['defaultgroup' => 'com_languages']);
  5.                 if ($cache->contains('languages')) {
  6.                     $languages $cache->get('languages');
  7.                 } else {
  8.                     $db    Factory::getDbo();
  9.                     $query $db->getQuery(true)
  10.                         ->select('*')
  1.             $menus $this->getMenu();
  2.             $menu  $menus->getActive();
  3.             // Get language
  4.             $lang_code $this->getLanguage()->getTag();
  5.             $languages LanguageHelper::getLanguages('lang_code');
  6.             $title $this->get('sitename');
  7.             if (isset($languages[$lang_code]) && $languages[$lang_code]->metadesc) {
  8.                 $description $languages[$lang_code]->metadesc;
  1.         // Load the document to the API
  2.         $this->loadDocument();
  3.         // Set up the params
  4.         $document $this->getDocument();
  5.         $params   $this->getParams();
  6.         // Register the document object with Factory
  7.         Factory::$document $document;
  8.         switch ($document->getType()) {
  1.              */
  2.             $this->checkUserRequireReset('com_users''profile''edit''com_users/profile.save,com_users/profile.apply,com_users/user.logout');
  3.         }
  4.         // Dispatch the application
  5.         $this->dispatch();
  6.         // Mark afterDispatch in the profiler.
  7.         JDEBUG $this->profiler->mark('afterDispatch') : null;
  8.     }
  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] 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/Language/LanguageHelper.php:131)
  at Joomla\CMS\Language\LanguageHelper::getLanguages()
     (/var/www/vhosts/kirche-kirchdorf-langreder.de/httpdocs/libraries/src/Application/SiteApplication.php:313)
  at Joomla\CMS\Application\SiteApplication->getParams()
     (/var/www/vhosts/kirche-kirchdorf-langreder.de/httpdocs/libraries/src/Application/SiteApplication.php:158)
  at Joomla\CMS\Application\SiteApplication->dispatch()
     (/var/www/vhosts/kirche-kirchdorf-langreder.de/httpdocs/libraries/src/Application/SiteApplication.php:249)
  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)