* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
//no direct accees
defined ('_JEXEC') or die ('resticted aceess');
$doc = JFactory::getDocument();
$params = JFactory::getApplication()->getTemplate('true')->params;
//Error Logo
if ($logo_image = $params->get('error_logo')) {
$logo = JURI::root() . '/' . $logo_image;
// Store the file path
$this->_file = $directory . '/' . $filename;
// Get the file content
ob_start();
require $directory . '/' . $filename;
$contents = ob_get_clean();
}
return $contents;
}
$this->baseurl = Uri::base(true);
$this->params = $params['params'] ?? new Registry();
$this->template = $template;
// Load
$this->_template = $this->_loadTemplate($baseDir, $file);
return $this;
}
/**
*
* @since 1.7.0
*/
public function parse($params = [])
{
return $this->_fetchTemplate($params)->_parseTemplate();
}
/**
* Outputs the template to the browser.
*
public function render($caching = false, $params = [])
{
$this->_caching = $caching;
if (empty($this->_template)) {
$this->parse($params);
}
if (\array_key_exists('csp_nonce', $params) && $params['csp_nonce'] !== null) {
$this->cspNonce = $params['csp_nonce'];
}
$this->debug = $params['debug'] ?? false;
$this->error = $this->_error;
$params['file'] = 'error.php';
return parent::render($cache, $params);
}
/**
* Render the backtrace
*
ob_end_clean();
}
$this->getDocument()->setTitle(Text::_('Error') . ': ' . $error->getCode());
return $this->getDocument()->render(
false,
[
'template' => $template->template,
'directory' => JPATH_THEMES,
'debug' => JDEBUG,
'subject' => $app,
'document' => $renderer->getDocument(),
])
);
$data = $renderer->render($error);
// If nothing was rendered, just use the message from the Exception
if (empty($data)) {
$data = $error->getMessage();
}
* @since 3.10.0
*/
public static function handleException(\Throwable $error)
{
static::logException($error);
static::render($error);
}
/**
* Render the error page based on an exception.
*
);
// Trigger the onError event.
$this->dispatchEvent('onError', $event);
ExceptionHandler::handleException($event->getError());
}
// Trigger the onBeforeRespond event.
$this->dispatchEvent(
'onBeforeRespond',
// 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';
try {
if (!$this->statement->execute()) {
throw new ExecutionFailureException($this->query, $this->statement->error, $this->statement->errno);
}
} catch (\Throwable $e) {
throw new ExecutionFailureException($this->query, $e->getMessage(), $e->getCode(), $e);
}
if ($this->columnNames === null) {
$meta = $this->statement->result_metadata();
foreach ($bounded as $key => $obj) {
$this->statement->bindParam($key, $obj->value, $obj->dataType);
}
try {
$this->executed = $this->statement->execute();
// If there is a monitor registered, let it know we have finished this query
if ($this->monitor) {
$this->monitor->stopQuery();
}
$this->connect();
$array = [];
// Execute the query and get the result set cursor.
$this->execute();
// Get all of the rows from the result set.
while ($row = $this->fetchAssoc()) {
$value = $column ? ($row[$column] ?? $row) : $row;
// Set the query for execution.
$db->setQuery($query);
// Build the view levels array.
foreach ($db->loadAssocList() as $level) {
self::$viewLevels[$level['id']] = (array) json_decode($level['rules']);
}
}
// Initialise the authorised array.
if ($this->_authLevels === null) {
$this->_authLevels = [];
}
if (empty($this->_authLevels)) {
$this->_authLevels = Access::getAuthorisedViewLevels($this->id);
}
return $this->_authLevels;
}
{
if (static::$plugins !== null) {
return static::$plugins;
}
$levels = Factory::getUser()->getAuthorisedViewLevels();
/** @var \Joomla\CMS\Cache\Controller\CallbackController $cache */
$cache = Factory::getCache('com_plugins', 'callback');
$loader = function () use ($levels) {
* @since 1.5
*/
public static function getPlugin($type, $plugin = null)
{
$result = [];
$plugins = static::load();
// Find the correct plugin(s) to return.
if (!$plugin) {
foreach ($plugins as $p) {
// Is this the right plugin?
if ($user->guest) {
$guestUsergroup = ComponentHelper::getParams('com_users')->get('guest_usergroup', 1);
$user->groups = [$guestUsergroup];
}
if ($plugin = PluginHelper::getPlugin('system', 'languagefilter')) {
$pluginParams = new Registry($plugin->params);
$this->setLanguageFilter(true);
$this->setDetectBrowser($pluginParams->get('detect_browser', 1) == 1);
}
* @since 3.2
*/
protected function doExecute()
{
// Initialise the application
$this->initialiseApp();
// Mark afterInitialise in the profiler.
JDEBUG ? $this->profiler->mark('afterInitialise') : null;
// Route the application
$this->sanityCheckSystemVariables();
$this->setupLogging();
$this->createExtensionNamespaceMap();
// Perform application routines.
$this->doExecute();
// If we have an application document object, render it.
if ($this->document instanceof \Joomla\CMS\Document\Document) {
// Render the application output.
$this->render();
// 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';
throw new PrepareStatementFailureException($this->statement->error, $this->statement->errno);
}
}
try {
if (!$this->statement->execute()) {
throw new ExecutionFailureException($this->query, $this->statement->error, $this->statement->errno);
}
} catch (\Throwable $e) {
throw new ExecutionFailureException($this->query, $e->getMessage(), $e->getCode(), $e);
}
throw new PrepareStatementFailureException($this->statement->error, $this->statement->errno);
}
}
try {
if (!$this->statement->execute()) {
throw new ExecutionFailureException($this->query, $this->statement->error, $this->statement->errno);
}
} catch (\Throwable $e) {
throw new ExecutionFailureException($this->query, $e->getMessage(), $e->getCode(), $e);
}
foreach ($bounded as $key => $obj) {
$this->statement->bindParam($key, $obj->value, $obj->dataType);
}
try {
$this->executed = $this->statement->execute();
// If there is a monitor registered, let it know we have finished this query
if ($this->monitor) {
$this->monitor->stopQuery();
}
$this->connect();
$array = [];
// Execute the query and get the result set cursor.
$this->execute();
// Get all of the rows from the result set.
while ($row = $this->fetchAssoc()) {
$value = $column ? ($row[$column] ?? $row) : $row;
// Set the query for execution.
$db->setQuery($query);
// Build the view levels array.
foreach ($db->loadAssocList() as $level) {
self::$viewLevels[$level['id']] = (array) json_decode($level['rules']);
}
}
// Initialise the authorised array.
if ($this->_authLevels === null) {
$this->_authLevels = [];
}
if (empty($this->_authLevels)) {
$this->_authLevels = Access::getAuthorisedViewLevels($this->id);
}
return $this->_authLevels;
}
{
if (static::$plugins !== null) {
return static::$plugins;
}
$levels = Factory::getUser()->getAuthorisedViewLevels();
/** @var \Joomla\CMS\Cache\Controller\CallbackController $cache */
$cache = Factory::getCache('com_plugins', 'callback');
$loader = function () use ($levels) {
* @since 1.5
*/
public static function getPlugin($type, $plugin = null)
{
$result = [];
$plugins = static::load();
// Find the correct plugin(s) to return.
if (!$plugin) {
foreach ($plugins as $p) {
// Is this the right plugin?
if ($user->guest) {
$guestUsergroup = ComponentHelper::getParams('com_users')->get('guest_usergroup', 1);
$user->groups = [$guestUsergroup];
}
if ($plugin = PluginHelper::getPlugin('system', 'languagefilter')) {
$pluginParams = new Registry($plugin->params);
$this->setLanguageFilter(true);
$this->setDetectBrowser($pluginParams->get('detect_browser', 1) == 1);
}
* @since 3.2
*/
protected function doExecute()
{
// Initialise the application
$this->initialiseApp();
// Mark afterInitialise in the profiler.
JDEBUG ? $this->profiler->mark('afterInitialise') : null;
// Route the application
$this->sanityCheckSystemVariables();
$this->setupLogging();
$this->createExtensionNamespaceMap();
// Perform application routines.
$this->doExecute();
// If we have an application document object, render it.
if ($this->document instanceof \Joomla\CMS\Document\Document) {
// Render the application output.
$this->render();
// 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';
[3/3]
ClassNotFoundError
|
---|
Symfony\Component\ErrorHandler\Error\ClassNotFoundError: Attempted to load class "JFactory" from the global namespace. Did you forget a "use" statement? at /var/www/rymdturism.se/public_html/templates/shaper_finance/error.php:12 at require() (/var/www/rymdturism.se/public_html/libraries/src/Document/HtmlDocument.php:731) at Joomla\CMS\Document\HtmlDocument->_loadTemplate('/var/www/rymdturism.se/public_html/templates/shaper_finance', 'error.php') (/var/www/rymdturism.se/public_html/libraries/src/Document/HtmlDocument.php:785) at Joomla\CMS\Document\HtmlDocument->_fetchTemplate(array('template' => 'shaper_finance', 'directory' => '/var/www/rymdturism.se/public_html/templates', 'debug' => false, 'csp_nonce' => null, 'templateInherits' => '', 'params' => object(Registry), 'file' => 'error.php')) (/var/www/rymdturism.se/public_html/libraries/src/Document/HtmlDocument.php:622) at Joomla\CMS\Document\HtmlDocument->parse(array('template' => 'shaper_finance', 'directory' => '/var/www/rymdturism.se/public_html/templates', 'debug' => false, 'csp_nonce' => null, 'templateInherits' => '', 'params' => object(Registry), 'file' => 'error.php')) (/var/www/rymdturism.se/public_html/libraries/src/Document/HtmlDocument.php:640) at Joomla\CMS\Document\HtmlDocument->render(false, array('template' => 'shaper_finance', 'directory' => '/var/www/rymdturism.se/public_html/templates', 'debug' => false, 'csp_nonce' => null, 'templateInherits' => '', 'params' => object(Registry), 'file' => 'error.php')) (/var/www/rymdturism.se/public_html/libraries/src/Document/ErrorDocument.php:139) at Joomla\CMS\Document\ErrorDocument->render(false, array('template' => 'shaper_finance', 'directory' => '/var/www/rymdturism.se/public_html/templates', 'debug' => false, 'csp_nonce' => null, 'templateInherits' => '', 'params' => object(Registry), 'file' => 'error.php')) (/var/www/rymdturism.se/public_html/libraries/src/Error/Renderer/HtmlRenderer.php:70) at Joomla\CMS\Error\Renderer\HtmlRenderer->render(object(ExecutionFailureException)) (/var/www/rymdturism.se/public_html/libraries/src/Exception/ExceptionHandler.php:136) at Joomla\CMS\Exception\ExceptionHandler::render(object(ExecutionFailureException)) (/var/www/rymdturism.se/public_html/libraries/src/Exception/ExceptionHandler.php:73) at Joomla\CMS\Exception\ExceptionHandler::handleException(object(ExecutionFailureException)) (/var/www/rymdturism.se/public_html/libraries/src/Application/CMSApplication.php:336) at Joomla\CMS\Application\CMSApplication->execute() (/var/www/rymdturism.se/public_html/includes/app.php:58) at require_once('/var/www/rymdturism.se/public_html/includes/app.php') (/var/www/rymdturism.se/public_html/index.php:32) |
[2/3]
ExecutionFailureException
|
---|
Joomla\Database\Exception\ExecutionFailureException: Prepared statement needs to be re-prepared at /var/www/rymdturism.se/public_html/libraries/vendor/joomla/database/src/Mysqli/MysqliStatement.php:411 at Joomla\Database\Mysqli\MysqliStatement->execute() (/var/www/rymdturism.se/public_html/libraries/vendor/joomla/database/src/DatabaseDriver.php:651) at Joomla\Database\DatabaseDriver->execute() (/var/www/rymdturism.se/public_html/libraries/vendor/joomla/database/src/DatabaseDriver.php:1180) at Joomla\Database\DatabaseDriver->loadAssocList() (/var/www/rymdturism.se/public_html/libraries/src/Access/Access.php:955) at Joomla\CMS\Access\Access::getAuthorisedViewLevels(0) (/var/www/rymdturism.se/public_html/libraries/src/User/User.php:474) at Joomla\CMS\User\User->getAuthorisedViewLevels() (/var/www/rymdturism.se/public_html/libraries/src/Plugin/PluginHelper.php:258) at Joomla\CMS\Plugin\PluginHelper::load() (/var/www/rymdturism.se/public_html/libraries/src/Plugin/PluginHelper.php:109) at Joomla\CMS\Plugin\PluginHelper::getPlugin('system', 'languagefilter') (/var/www/rymdturism.se/public_html/libraries/src/Application/SiteApplication.php:589) at Joomla\CMS\Application\SiteApplication->initialiseApp() (/var/www/rymdturism.se/public_html/libraries/src/Application/SiteApplication.php:238) at Joomla\CMS\Application\SiteApplication->doExecute() (/var/www/rymdturism.se/public_html/libraries/src/Application/CMSApplication.php:306) at Joomla\CMS\Application\CMSApplication->execute() (/var/www/rymdturism.se/public_html/includes/app.php:58) at require_once('/var/www/rymdturism.se/public_html/includes/app.php') (/var/www/rymdturism.se/public_html/index.php:32) |
[1/3]
mysqli_sql_exception
|
---|
mysqli_sql_exception: Prepared statement needs to be re-prepared at /var/www/rymdturism.se/public_html/libraries/vendor/joomla/database/src/Mysqli/MysqliStatement.php:407 at mysqli_stmt->execute() (/var/www/rymdturism.se/public_html/libraries/vendor/joomla/database/src/Mysqli/MysqliStatement.php:407) at Joomla\Database\Mysqli\MysqliStatement->execute() (/var/www/rymdturism.se/public_html/libraries/vendor/joomla/database/src/DatabaseDriver.php:651) at Joomla\Database\DatabaseDriver->execute() (/var/www/rymdturism.se/public_html/libraries/vendor/joomla/database/src/DatabaseDriver.php:1180) at Joomla\Database\DatabaseDriver->loadAssocList() (/var/www/rymdturism.se/public_html/libraries/src/Access/Access.php:955) at Joomla\CMS\Access\Access::getAuthorisedViewLevels(0) (/var/www/rymdturism.se/public_html/libraries/src/User/User.php:474) at Joomla\CMS\User\User->getAuthorisedViewLevels() (/var/www/rymdturism.se/public_html/libraries/src/Plugin/PluginHelper.php:258) at Joomla\CMS\Plugin\PluginHelper::load() (/var/www/rymdturism.se/public_html/libraries/src/Plugin/PluginHelper.php:109) at Joomla\CMS\Plugin\PluginHelper::getPlugin('system', 'languagefilter') (/var/www/rymdturism.se/public_html/libraries/src/Application/SiteApplication.php:589) at Joomla\CMS\Application\SiteApplication->initialiseApp() (/var/www/rymdturism.se/public_html/libraries/src/Application/SiteApplication.php:238) at Joomla\CMS\Application\SiteApplication->doExecute() (/var/www/rymdturism.se/public_html/libraries/src/Application/CMSApplication.php:306) at Joomla\CMS\Application\CMSApplication->execute() (/var/www/rymdturism.se/public_html/includes/app.php:58) at require_once('/var/www/rymdturism.se/public_html/includes/app.php') (/var/www/rymdturism.se/public_html/index.php:32) |