Whoops \ Exception \ ErrorException (E_ERROR)
Uncaught JDatabaseExceptionExecuting: Table '#__rsseo_error_links' is marked as crashed and should be repaired in /home/a00000rq/public_html/libraries/joomla/database/driver/mysqli.php:668 Stack trace: #0 /home/a00000rq/public_html/libraries/joomla/database/driver.php(1740): JDatabaseDriverMysqli->execute() #1 /home/a00000rq/public_html/administrator/components/com_rsseo/helpers/rsseo.php(443): JDatabaseDriver->loadResult() #2 /home/a00000rq/public_html/plugins/system/rsseo/rsseo.php(1336): rsseoHelper::saveURL(1194) #3 /home/a00000rq/public_html/plugins/system/admintools/feature/shield404.php(63): plgSystemRsseo::handleError(Object(JDatabaseExceptionExecuting)) #4 /home/a00000rq/public_html/plugins/system/admintools/feature/shield404.php(41): AtsystemFeatureShield404::doErrorHandling(Object(JDatabaseExceptionExecuting)) #5 [internal function]: AtsystemFeatureShield404::handleException(Object(JDatabaseExceptionExecuting)) #6 /home/a00000rq/public_html/libraries/gantry5/classes/Gantry/Component/Whoops/SystemFa Whoops\Exception\ErrorException thrown with message "Uncaught JDatabaseExceptionExecuting: Table '#__rsseo_error_links' is marked as crashed and should be repaired in /home/a00000rq/public_html/libraries/joomla/database/driver/mysqli.php:668 Stack trace: #0 /home/a00000rq/public_html/libraries/joomla/database/driver.php(1740): JDatabaseDriverMysqli->execute() #1 /home/a00000rq/public_html/administrator/components/com_rsseo/helpers/rsseo.php(443): JDatabaseDriver->loadResult() #2 /home/a00000rq/public_html/plugins/system/rsseo/rsseo.php(1336): rsseoHelper::saveURL(1194) #3 /home/a00000rq/public_html/plugins/system/admintools/feature/shield404.php(63): plgSystemRsseo::handleError(Object(JDatabaseExceptionExecuting)) #4 /home/a00000rq/public_html/plugins/system/admintools/feature/shield404.php(41): AtsystemFeatureShield404::doErrorHandling(Object(JDatabaseExceptionExecuting)) #5 [internal function]: AtsystemFeatureShield404::handleException(Object(JDatabaseExceptionExecuting)) #6 /home/a00000rq/public_html/libraries/gantry5/classes/Gantry/Component/Whoops/SystemFa" Stacktrace: #3 Whoops\Exception\ErrorException in /home/a00000rq/public_html/libraries/joomla/database/driver/mysqli.php:668 #2 Whoops\Run:handleError in /home/a00000rq/public_html/libraries/gantry5/vendor/filp/whoops/src/Whoops/Run.php:433 #1 Whoops\Run:handleShutdown in /home/a00000rq/public_html/libraries/gantry5/classes/Gantry/Component/Whoops/SystemFacade.php:155 #0 Gantry\Component\Whoops\SystemFacade:handleShutdown in [internal]:0
Stack frames (4)
3
Whoops\Exception\ErrorException
/home/a00000rq/public_html/libraries/joomla/database/driver/mysqli.php668
2
Whoops\Run handleError
/vendor/filp/whoops/src/Whoops/Run.php433
1
Whoops\Run handleShutdown
/classes/Gantry/Component/Whoops/SystemFacade.php155
0
Gantry\Component\Whoops\SystemFacade handleShutdown
[internal]0
                catch (RuntimeException $e)
                {
                    // Get the error number and message.
                    $this->errorNum = $this->getErrorNumber();
                    $this->errorMsg = $this->getErrorMessage();
 
                    JLog::add(JText::sprintf('JLIB_DATABASE_QUERY_FAILED', $this->errorNum, $this->errorMsg), JLog::ERROR, 'database-error');
 
                    throw new JDatabaseExceptionExecuting($query, $this->errorMsg, $this->errorNum, $e);
                }
 
                // Since we were able to reconnect, run the query again.
                return $this->execute();
            }
            // The server was not disconnected.
            else
            {
                JLog::add(JText::sprintf('JLIB_DATABASE_QUERY_FAILED', $this->errorNum, $this->errorMsg), JLog::ERROR, 'database-error');
 
                throw new JDatabaseExceptionExecuting($query, $this->errorMsg, $this->errorNum);
            }
        }
 
        return $this->cursor;
    }
 
    /**
     * Renames a table in the database.
     *
     * @param   string  $oldTable  The name of the table to be renamed
     * @param   string  $newTable  The new name for the table.
     * @param   string  $backup    Not used by MySQL.
     * @param   string  $prefix    Not used by MySQL.
     *
     * @return  JDatabaseDriverMysqli  Returns this object to support chaining.
     *
     * @since   3.0.1
     * @throws  RuntimeException
     */
    public function renameTable($oldTable, $newTable, $backup = null, $prefix = null)
    /**
     * Special case to deal with Fatal errors and the like.
     */
    public function handleShutdown()
    {
        // If we reached this step, we are in shutdown handler.
        // An exception thrown in a shutdown handler will not be propagated
        // to the exception handler. Pass that information along.
        $this->canThrowExceptions = false;
 
        $error = $this->system->getLastError();
        if ($error && Misc::isLevelFatal($error['type'])) {
            // If there was a fatal error,
            // it was not handled in handleError yet.
            $this->allowQuit = false;
            $this->handleError(
                $error['type'],
                $error['message'],
                $error['file'],
                $error['line']
            );
        }
    }
 
    /**
     * In certain scenarios, like in shutdown handler, we can not throw exceptions
     * @var bool
     */
    private $canThrowExceptions = true;
 
    /**
     * Echo something to the browser
     * @param  string $output
     * @return $this
     */
    private function writeToOutputNow($output)
    {
        if ($this->sendHttpCode() && \Whoops\Util\Misc::canSendHeaders()) {
            $this->system->setHttpResponseCode(
                $this->sendHttpCode()
        }
 
        // Propagate error to the next handler.
        if ($this->platformExceptionHandler) {
            call_user_func_array($this->platformExceptionHandler, [&$exception]);
        }
    }
 
    /**
     * Special case to deal with Fatal errors and the like.
     */
    public function handleShutdown()
    {
        $handler = $this->whoopsShutdownHandler;
 
        $error = $this->getLastError();
 
        // Ignore core warnings and errors.
        if ($error && !($error['type'] & (E_CORE_WARNING | E_CORE_ERROR))) {
            $handler();
        }
    }
}
 

Environment & details:

empty
empty
empty
empty
Key Value
VMCHECK NOCHECK
joomla TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjo0OntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjI6e3M6NzoiY291bnRlciI7aToxO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTcxMDgyMTM0OTtzOjQ6Imxhc3QiO2k6MTcxMDgyMTM0OTtzOjM6Im5vdyI7aToxNzEwODIxMzQ5O319czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6OToic2VwYXJhdG9yIjtzOjE6Ii4iO31zOjQ6InVzZXIiO086MjA6Ikpvb21sYVxDTVNcVXNlclxVc2VyIjoxOntzOjI6ImlkIjtpOjA7fXM6MTQ6ImNvbV9yc2ZpcmV3YWxsIjtPOjg6InN0ZENsYXNzIjoxOntzOjU6Imdlb2lwIjtzOjI6IlVTIjt9fX1zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6OToic2VwYXJhdG9yIjtzOjE6Ii4iO30=
Key Value
PATH /usr/local/bin:/usr/bin:/bin
TZ Europe/London
REDIRECT_HANDLER application/x-httpd-ea-php74
REDIRECT_STATUS 200
UNIQUE_ID ZfkP5WCKb6vaoq8_uCJc8QAAAAQ
SCRIPT_URL /about-us
SCRIPT_URI https://incuhive.co.uk/about-us
HTTPS on
SSL_TLS_SNI incuhive.co.uk
HTTP_ACCEPT */*
HTTP_USER_AGENT claudebot
HTTP_REFERER http://incuhive.co.uk/about-us
HTTP_HOST incuhive.co.uk
HTTP_X_HTTPS 1
SERVER_SIGNATURE
SERVER_SOFTWARE Apache
SERVER_NAME incuhive.co.uk
SERVER_ADDR 185.17.148.230
SERVER_PORT 443
REMOTE_ADDR 44.206.248.122
DOCUMENT_ROOT /home/a00000rq/public_html
REQUEST_SCHEME https
CONTEXT_PREFIX /cgi-sys
CONTEXT_DOCUMENT_ROOT /usr/local/cpanel/cgi-sys/
SERVER_ADMIN webmaster@incuhive.co.uk
SCRIPT_FILENAME /home/a00000rq/public_html/index.php
REMOTE_PORT 53308
REDIRECT_URL /index.php
GATEWAY_INTERFACE CGI/1.1
SERVER_PROTOCOL HTTP/1.1
REQUEST_METHOD GET
QUERY_STRING
REQUEST_URI /about-us
SCRIPT_NAME /index.php
ORIG_SCRIPT_FILENAME /usr/local/cpanel/cgi-sys/ea-php74
ORIG_PATH_INFO /index.php
ORIG_PATH_TRANSLATED /home/a00000rq/public_html/index.php
ORIG_SCRIPT_NAME /cgi-sys/ea-php74
PHP_SELF /index.php
REQUEST_TIME_FLOAT 1710821349.7552
REQUEST_TIME 1710821349
Key Value
PATH /usr/local/bin:/usr/bin:/bin
TZ Europe/London
REDIRECT_HANDLER application/x-httpd-ea-php74
REDIRECT_STATUS 200
UNIQUE_ID ZfkP5WCKb6vaoq8_uCJc8QAAAAQ
SCRIPT_URL /about-us
SCRIPT_URI https://incuhive.co.uk/about-us
HTTPS on
SSL_TLS_SNI incuhive.co.uk
HTTP_ACCEPT */*
HTTP_USER_AGENT claudebot
HTTP_REFERER http://incuhive.co.uk/about-us
HTTP_HOST incuhive.co.uk
HTTP_X_HTTPS 1
SERVER_SIGNATURE
SERVER_SOFTWARE Apache
SERVER_NAME incuhive.co.uk
SERVER_ADDR 185.17.148.230
SERVER_PORT 443
REMOTE_ADDR 44.206.248.122
DOCUMENT_ROOT /home/a00000rq/public_html
REQUEST_SCHEME https
CONTEXT_PREFIX /cgi-sys
CONTEXT_DOCUMENT_ROOT /usr/local/cpanel/cgi-sys/
SERVER_ADMIN webmaster@incuhive.co.uk
SCRIPT_FILENAME /home/a00000rq/public_html/index.php
REMOTE_PORT 53308
REDIRECT_URL /index.php
GATEWAY_INTERFACE CGI/1.1
SERVER_PROTOCOL HTTP/1.1
REQUEST_METHOD GET
QUERY_STRING
REQUEST_URI /about-us
SCRIPT_NAME /index.php
ORIG_SCRIPT_FILENAME /usr/local/cpanel/cgi-sys/ea-php74
ORIG_PATH_INFO /index.php
ORIG_PATH_TRANSLATED /home/a00000rq/public_html/index.php
ORIG_SCRIPT_NAME /cgi-sys/ea-php74
0. Whoops\Handler\PrettyPageHandler