Warning: file_put_contents(/var/www/html/administrator/logs/everything.php): Failed to open stream: Permission denied in /var/www/html/libraries/vendor/joomla/filesystem/src/File.php on line 281 Warning: file_put_contents(/var/www/html/administrator/logs/everything.php): Failed to open stream: Permission denied in /var/www/html/libraries/vendor/joomla/filesystem/src/File.php on line 279 42P01, 7, ERROR: relation "xsjec_template_styles" does not exist LINE 2: FROM "xsjec_template_styles" AS "s" ^ (500 Whoops, looks like something went wrong.)

ExecutionFailureException ExecutionFailureException

HTTP 500 Whoops, looks like something went wrong.

42P01, 7, ERROR: relation "xsjec_template_styles" does not exist
LINE 2: FROM "xsjec_template_styles" AS "s"
^

Exceptions 2

Joomla\Database\Exception\ ExecutionFailureException

Show exception properties
Joomla\Database\Exception\ExecutionFailureException {#310
  -query: """
    SELECT "id","home","template","s"."params","inheritable","parent"\n
    FROM "xsjec_template_styles" AS "s"\n
    LEFT JOIN "xsjec_extensions" AS "e" ON "e"."element" = "s"."template" AND "e"."type" = 'template' AND "e"."client_id" = "s"."client_id"\n
    WHERE "s"."client_id" = 0 AND "e"."enabled" = 1
    """
}
  1.             } catch (\LogicException $e) {
  2.                 throw new ExecutionFailureException($sql$errorMsg$errorNum$e);
  3.             }
  4.             // Throw the normal query exception.
  5.             throw new ExecutionFailureException($sql$errorMsg$errorNum);
  6.         }
  7.     }
  8.     /**
  9.      * Retrieve a PDO database connection attribute
  1.                 $this->statement->setFetchMode($fetchMode$class);
  2.             }
  3.         }
  4.         // Execute the query and get the result set cursor.
  5.         $this->execute();
  6.         // Get all of the rows from the result set as objects of type $class.
  7.         while ($row $this->fetchObject()) {
  8.             if ($key) {
  9.                 $array[$row->$key] = $row;
  1.                     . ' AND ' $db->quoteName('e.client_id') . ' = ' $db->quoteName('s.client_id')
  2.             );
  3.         $db->setQuery($query);
  4.         return $db->loadObjectList('id');
  5.     }
  6.     /**
  7.      * Custom clean cache method
  8.      *
StyleModel->getSiteTemplates() in /var/www/html/libraries/src/Application/SiteApplication.php (line 460)
  1.         if ($cache->contains($cacheId)) {
  2.             $templates $cache->get($cacheId);
  3.         } else {
  4.             $templates $this->bootComponent('templates')->getMVCFactory()
  5.                 ->createModel('Style''Administrator')->getSiteTemplates();
  6.             foreach ($templates as &$template) {
  7.                 // Create home element
  8.                 if ($template->home == && !isset($template_home) || $this->getLanguageFilter() && $template->home == $tag) {
  9.                     $template_home = clone $template;
SiteApplication->getTemplate(true) in /var/www/html/libraries/src/Error/Renderer/HtmlRenderer.php (line 50)
  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
HtmlRenderer->render(object(ExecutionFailureException)) in /var/www/html/libraries/src/Exception/ExceptionHandler.php (line 142)
  1.                     'subject'  => $app,
  2.                     'document' => $renderer->getDocument(),
  3.                 ])
  4.             );
  5.             $data $renderer->render($error);
  6.             // If nothing was rendered, just use the message from the Exception
  7.             if (empty($data)) {
  8.                 $data $error->getMessage();
  9.             }
ExceptionHandler::render(object(ExecutionFailureException)) in /var/www/html/libraries/src/Exception/ExceptionHandler.php (line 76)
  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.      *
ExceptionHandler::handleException(object(ExecutionFailureException)) in /var/www/html/libraries/src/Application/CMSApplication.php (line 334)
  1.             );
  2.             // Trigger the onError event.
  3.             $this->dispatchEvent('onError'$event);
  4.             ExceptionHandler::handleException($event->getError());
  5.         }
  6.         // Trigger the onBeforeRespond event.
  7.         $this->dispatchEvent(
  8.             'onBeforeRespond',
CMSApplication->execute() in /var/www/html/includes/app.php (line 58)
  1. // Set the application as global app
  2. \Joomla\CMS\Factory::$application $app;
  3. // Execute the application.
  4. $app->execute();
require_once('/var/www/html/includes/app.php') in /var/www/html/index.php (line 51)
  1.     // ... die
  2.     die();
  3. }
  4. // Run the application - All executable code should be triggered through this file
  5. require_once __DIR__ '/includes/app.php';

Joomla\Database\Exception\ ExecutionFailureException

42P01, 7, ERROR: relation "xsjec_extensions" does not exist LINE 2: FROM "xsjec_extensions" ^

  1.             } catch (\LogicException $e) {
  2.                 throw new ExecutionFailureException($sql$errorMsg$errorNum$e);
  3.             }
  4.             // Throw the normal query exception.
  5.             throw new ExecutionFailureException($sql$errorMsg$errorNum);
  6.         }
  7.     }
  8.     /**
  9.      * Retrieve a PDO database connection attribute
  1.      * @since   1.0
  2.      */
  3.     public function getIterator($column null$class \stdClass::class)
  4.     {
  5.         if (!$this->executed) {
  6.             $this->execute();
  7.         }
  8.         /**
  9.          * Calling setQuery free's the statement from the iterator which will break the iterator.
  10.          * So we set statement to null so that freeResult on the statement here has no affect.
DatabaseDriver->getIterator() in /var/www/html/libraries/src/Component/ComponentHelper.php (line 399)
  1.                 );
  2.             $components = [];
  3.             $db->setQuery($query);
  4.             foreach ($db->getIterator() as $component) {
  5.                 $components[$component->option] = new ComponentRecord((array) $component);
  6.             }
  7.             return $components;
  8.         };
ComponentHelper::Joomla\CMS\Component\{closure}() in /var/www/html/libraries/src/Cache/Controller/CallbackController.php (line 51)
  1.             $referenceArgs = &$args;
  2.         }
  3.         // Just execute the callback if caching is disabled.
  4.         if (empty($this->options['caching'])) {
  5.             return \call_user_func_array($callback$referenceArgs);
  6.         }
  7.         if (!$id) {
  8.             // Generate an ID
  9.             $id $this->_makeId($callback$args);
CallbackController->get(object(Closure), array(), 'Joomla\\CMS\\Component\\ComponentHelper::load') in /var/www/html/libraries/src/Component/ComponentHelper.php (line 410)
  1.         /** @var CallbackController $cache */
  2.         $cache Factory::getContainer()->get(CacheControllerFactoryInterface::class)->createCacheController('callback', ['defaultgroup' => '_system']);
  3.         try {
  4.             static::$components $cache->get($loader, [], __METHOD__);
  5.         } catch (CacheExceptionInterface) {
  6.             static::$components $loader();
  7.         }
  8.         return true;
  1.      * @since   3.6.3
  2.      */
  3.     public static function getComponents()
  4.     {
  5.         if (empty(static::$components)) {
  6.             static::load();
  7.         }
  8.         return static::$components;
  9.     }
ComponentHelper::getComponents() in /var/www/html/libraries/src/Component/ComponentHelper.php (line 56)
  1.      *
  2.      * @since   1.5
  3.      */
  4.     public static function getComponent($option$strict false)
  5.     {
  6.         $components = static::getComponents();
  7.         if (isset($components[$option])) {
  8.             return $components[$option];
  9.         }
ComponentHelper::getComponent('com_users', false) in /var/www/html/libraries/src/Component/ComponentHelper.php (line 114)
  1.      * @see     Registry
  2.      * @since   1.5
  3.      */
  4.     public static function getParams($option$strict false)
  5.     {
  6.         return static::getComponent($option$strict)->getParams();
  7.     }
  8.     /**
  9.      * Applies the global text filters to arbitrary text as per settings for current user groups
  10.      *
ComponentHelper::getParams('com_users') in /var/www/html/libraries/src/Application/SiteApplication.php (line 569)
  1.     {
  2.         $user Factory::getUser();
  3.         // If the user is a guest we populate it with the guest user group.
  4.         if ($user->guest) {
  5.             $guestUsergroup ComponentHelper::getParams('com_users')->get('guest_usergroup'1);
  6.             $user->groups   = [$guestUsergroup];
  7.         }
  8.         if ($plugin PluginHelper::getPlugin('system''languagefilter')) {
  9.             $pluginParams = new Registry($plugin->params);
SiteApplication->initialiseApp() in /var/www/html/libraries/src/Application/SiteApplication.php (line 237)
  1.      * @since   3.2
  2.      */
  3.     protected function doExecute()
  4.     {
  5.         // Initialise the application
  6.         $this->initialiseApp();
  7.         // Mark afterInitialise in the profiler.
  8.         JDEBUG $this->profiler->mark('afterInitialise') : null;
  9.         // Route the application
SiteApplication->doExecute() in /var/www/html/libraries/src/Application/CMSApplication.php (line 304)
  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();
CMSApplication->execute() in /var/www/html/includes/app.php (line 58)
  1. // Set the application as global app
  2. \Joomla\CMS\Factory::$application $app;
  3. // Execute the application.
  4. $app->execute();
require_once('/var/www/html/includes/app.php') in /var/www/html/index.php (line 51)
  1.     // ... die
  2.     die();
  3. }
  4. // Run the application - All executable code should be triggered through this file
  5. require_once __DIR__ '/includes/app.php';

Stack Traces 2

[2/2] ExecutionFailureException
Joomla\Database\Exception\ExecutionFailureException:
42P01, 7, ERROR:  relation "xsjec_template_styles" does not exist
LINE 2: FROM "xsjec_template_styles" AS "s"
             ^

  at /var/www/html/libraries/vendor/joomla/database/src/Pdo/PdoDriver.php:489
  at Joomla\Database\Pdo\PdoDriver->execute()
     (/var/www/html/libraries/vendor/joomla/database/src/DatabaseDriver.php:1304)
  at Joomla\Database\DatabaseDriver->loadObjectList('id')
     (/var/www/html/administrator/components/com_templates/src/Model/StyleModel.php:718)
  at Joomla\Component\Templates\Administrator\Model\StyleModel->getSiteTemplates()
     (/var/www/html/libraries/src/Application/SiteApplication.php:460)
  at Joomla\CMS\Application\SiteApplication->getTemplate(true)
     (/var/www/html/libraries/src/Error/Renderer/HtmlRenderer.php:50)
  at Joomla\CMS\Error\Renderer\HtmlRenderer->render(object(ExecutionFailureException))
     (/var/www/html/libraries/src/Exception/ExceptionHandler.php:142)
  at Joomla\CMS\Exception\ExceptionHandler::render(object(ExecutionFailureException))
     (/var/www/html/libraries/src/Exception/ExceptionHandler.php:76)
  at Joomla\CMS\Exception\ExceptionHandler::handleException(object(ExecutionFailureException))
     (/var/www/html/libraries/src/Application/CMSApplication.php:334)
  at Joomla\CMS\Application\CMSApplication->execute()
     (/var/www/html/includes/app.php:58)
  at require_once('/var/www/html/includes/app.php')
     (/var/www/html/index.php:51)                
[1/2] ExecutionFailureException
Joomla\Database\Exception\ExecutionFailureException:
42P01, 7, ERROR:  relation "xsjec_extensions" does not exist
LINE 2: FROM "xsjec_extensions"
             ^

  at /var/www/html/libraries/vendor/joomla/database/src/Pdo/PdoDriver.php:489
  at Joomla\Database\Pdo\PdoDriver->execute()
     (/var/www/html/libraries/vendor/joomla/database/src/DatabaseDriver.php:1017)
  at Joomla\Database\DatabaseDriver->getIterator()
     (/var/www/html/libraries/src/Component/ComponentHelper.php:399)
  at Joomla\CMS\Component\ComponentHelper::Joomla\CMS\Component\{closure}()
     (/var/www/html/libraries/src/Cache/Controller/CallbackController.php:51)
  at Joomla\CMS\Cache\Controller\CallbackController->get(object(Closure), array(), 'Joomla\\CMS\\Component\\ComponentHelper::load')
     (/var/www/html/libraries/src/Component/ComponentHelper.php:410)
  at Joomla\CMS\Component\ComponentHelper::load()
     (/var/www/html/libraries/src/Component/ComponentHelper.php:428)
  at Joomla\CMS\Component\ComponentHelper::getComponents()
     (/var/www/html/libraries/src/Component/ComponentHelper.php:56)
  at Joomla\CMS\Component\ComponentHelper::getComponent('com_users', false)
     (/var/www/html/libraries/src/Component/ComponentHelper.php:114)
  at Joomla\CMS\Component\ComponentHelper::getParams('com_users')
     (/var/www/html/libraries/src/Application/SiteApplication.php:569)
  at Joomla\CMS\Application\SiteApplication->initialiseApp()
     (/var/www/html/libraries/src/Application/SiteApplication.php:237)
  at Joomla\CMS\Application\SiteApplication->doExecute()
     (/var/www/html/libraries/src/Application/CMSApplication.php:304)
  at Joomla\CMS\Application\CMSApplication->execute()
     (/var/www/html/includes/app.php:58)
  at require_once('/var/www/html/includes/app.php')
     (/var/www/html/index.php:51)                
Warning: session_write_close(): Failed to write session data using user defined save handler. (session.save_path: , handler: Joomla\Session\Handler\DatabaseHandler::write) in /var/www/html/libraries/vendor/joomla/session/src/Storage/NativeStorage.php on line 114