mysqli_sql_exception

HTTP 500 Whoops, looks like something went wrong.

User equinein_kjgeary already has more than 'max_user_connections' active connections

Exception

mysqli_sql_exception

Show exception properties
mysqli_sql_exception {#2128
  #sqlstate: "HY000"
}
  1.                 $this->options['ssl']['cipher']
  2.             );
  3.         }
  4.         // Attempt to connect to the server, use error suppression to silence warnings and allow us to throw an Exception separately.
  5.         $connected = @$this->connection->real_connect(
  6.             $this->options['host'],
  7.             $this->options['user'],
  8.             $this->options['password'],
  9.             null,
  10.             $this->options['port'],
  1.                 $this->options['ssl']['cipher']
  2.             );
  3.         }
  4.         // Attempt to connect to the server, use error suppression to silence warnings and allow us to throw an Exception separately.
  5.         $connected = @$this->connection->real_connect(
  6.             $this->options['host'],
  7.             $this->options['user'],
  8.             $this->options['password'],
  9.             null,
  10.             $this->options['port'],
  1.      * @since   1.0
  2.      * @throws  \InvalidArgumentException
  3.      */
  4.     public function setQuery($query$offset 0$limit 0)
  5.     {
  6.         $this->connect();
  7.         $this->freeResult();
  8.         if (\is_string($query)) {
  9.             // Allows taking advantage of bound variables in a direct query:
DatabaseDriver->setQuery(object(MysqliQuery)) in /home/equinein/public_html/EIE-DEV-2025/libraries/src/Extension/ExtensionHelper.php (line 506)
  1.                 $query->where($db->quoteName('folder') . ' = :folder')
  2.                     ->bind(':folder'$folder);
  3.             }
  4.             $query->setLimit(1);
  5.             $db->setQuery($query);
  6.             self::$loadedExtensions[$key] = $db->loadObject();
  7.         }
  8.         return self::$loadedExtensions[$key];
ExtensionHelper::getExtensionRecord('compat', 'plugin', 0, 'behaviour') in /home/equinein/public_html/EIE-DEV-2025/administrator/components/com_admin/src/Model/SysinfoModel.php (line 337)
  1.         return $this->info;
  2.     }
  3.     private function getCompatPluginParameters()
  4.     {
  5.         $record ExtensionHelper::getExtensionRecord('compat''plugin'0'behaviour');
  6.         if ($record) {
  7.             $params = new Registry($record->params);
  8.             return ArrayHelper::toString($params->toArray(), ':'', ');
  1.         $db $this->getDatabase();
  2.         $this->info = [
  3.             'version'                => (new Version())->getLongVersion(),
  4.             'compatpluginenabled'    => PluginHelper::isEnabled('behaviour''compat'),
  5.             'compatpluginparameters' => $this->getCompatPluginParameters(),
  6.             'phpversion'             => PHP_VERSION,
  7.             'php'                    => php_uname(),
  8.             'dbserver'               => $db->getServerType(),
  9.             'dbversion'              => $db->getVersion(),
  10.             'dbcollation'            => $db->getCollation(),
  1.             'joomlaVersion' => JVERSION,
  2.             'requestId'     => $this->requestId,
  3.             'identity'      => $this->getIdentityInfo($application->getIdentity()),
  4.             'response'      => $this->getResponseInfo($application->getResponse()),
  5.             'template'      => $this->getTemplateInfo($application->getTemplate(true)),
  6.             'database'      => $this->getDatabaseInfo($model->getInfo()),
  7.         ];
  8.     }
  9.     /**
  10.      * Get Identity info.
  1.                 $request_variables
  2.             )
  3.         );
  4.         foreach ($this->collectors as $name => $collector) {
  5.             $this->data[$name] = $collector->collect();
  6.         }
  7.         // Remove all invalid (non UTF-8) characters
  8.         array_walk_recursive($this->data, function (&$item) {
  9.                 if (is_string($item) && !mb_check_encoding($item'UTF-8')) {
  1.      * @return array
  2.      */
  3.     public function getData()
  4.     {
  5.         if ($this->data === null) {
  6.             $this->collect();
  7.         }
  8.         return $this->data;
  9.     }
  10.     /**
  1.                 $js .= $this->getAddDatasetCode($id$data'(stacked)');
  2.             }
  3.         }
  4.         $suffix = !$initialize '(ajax)' null;
  5.         $js .= $this->getAddDatasetCode($this->debugBar->getCurrentRequestId(), $this->debugBar->getData(), $suffix);
  6.         $nonce '';
  7.         if ($doc->cspNonce) {
  8.             $nonce ' nonce="' $doc->cspNonce '"';
  1.             echo $contents;
  2.             return;
  3.         }
  4.         echo str_replace('</body>'$debugBarRenderer->renderHead() . $debugBarRenderer->render() . '</body>'$contents);
  5.     }
  6.     /**
  7.      * AJAX handler
  8.      *
  1.             foreach ($this->listeners[$event->getName()] as $listener) {
  2.                 if ($event->isStopped()) {
  3.                     return $event;
  4.                 }
  5.                 $listener($event);
  6.             }
  7.         }
  8.         return $event;
  9.     }
  1.             $dispatcher $this->getDispatcher();
  2.         } catch (\UnexpectedValueException $exception) {
  3.             return null;
  4.         }
  5.         return $dispatcher->dispatch($eventName$event ?: new ApplicationEvent($eventName$this));
  6.     }
  7.     /**
  8.      * Method to run the application routines.
  9.      *
AbstractApplication->dispatchEvent('onAfterRespond', object(AfterRespondEvent)) in /home/equinein/public_html/EIE-DEV-2025/libraries/src/Application/CMSApplication.php (line 347)
  1.         // Send the application response.
  2.         $this->respond();
  3.         // Trigger the onAfterRespond event.
  4.         $this->dispatchEvent(
  5.             'onAfterRespond',
  6.             new AfterRespondEvent('onAfterRespond', ['subject' => $this])
  7.         );
  8.     }
CMSApplication->execute() in /home/equinein/public_html/EIE-DEV-2025/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('/home/equinein/public_html/EIE-DEV-2025/includes/app.php') in /home/equinein/public_html/EIE-DEV-2025/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 Trace

mysqli_sql_exception
mysqli_sql_exception:
User equinein_kjgeary already has more than 'max_user_connections' active connections

  at /home/equinein/public_html/EIE-DEV-2025/libraries/vendor/joomla/database/src/Mysqli/MysqliDriver.php:236
  at mysqli->real_connect('localhost', 'equinein_kjgeary', object(SensitiveParameterValue), null, 3306, null, 0)
     (/home/equinein/public_html/EIE-DEV-2025/libraries/vendor/joomla/database/src/Mysqli/MysqliDriver.php:236)
  at Joomla\Database\Mysqli\MysqliDriver->connect()
     (/home/equinein/public_html/EIE-DEV-2025/libraries/vendor/joomla/database/src/DatabaseDriver.php:1740)
  at Joomla\Database\DatabaseDriver->setQuery(object(MysqliQuery))
     (/home/equinein/public_html/EIE-DEV-2025/libraries/src/Extension/ExtensionHelper.php:506)
  at Joomla\CMS\Extension\ExtensionHelper::getExtensionRecord('compat', 'plugin', 0, 'behaviour')
     (/home/equinein/public_html/EIE-DEV-2025/administrator/components/com_admin/src/Model/SysinfoModel.php:337)
  at Joomla\Component\Admin\Administrator\Model\SysinfoModel->getCompatPluginParameters()
     (/home/equinein/public_html/EIE-DEV-2025/administrator/components/com_admin/src/Model/SysinfoModel.php:318)
  at Joomla\Component\Admin\Administrator\Model\SysinfoModel->getInfo()
     (/home/equinein/public_html/EIE-DEV-2025/plugins/system/debug/src/DataCollector/InfoCollector.php:136)
  at Joomla\Plugin\System\Debug\DataCollector\InfoCollector->collect()
     (/home/equinein/public_html/EIE-DEV-2025/libraries/vendor/php-debugbar/php-debugbar/src/DebugBar/DebugBar.php:238)
  at DebugBar\DebugBar->collect()
     (/home/equinein/public_html/EIE-DEV-2025/libraries/vendor/php-debugbar/php-debugbar/src/DebugBar/DebugBar.php:265)
  at DebugBar\DebugBar->getData()
     (/home/equinein/public_html/EIE-DEV-2025/plugins/system/debug/src/JavascriptRenderer.php:119)
  at Joomla\Plugin\System\Debug\JavascriptRenderer->render()
     (/home/equinein/public_html/EIE-DEV-2025/plugins/system/debug/src/Extension/Debug.php:377)
  at Joomla\Plugin\System\Debug\Extension\Debug->onAfterRespond(object(AfterRespondEvent))
     (/home/equinein/public_html/EIE-DEV-2025/libraries/vendor/joomla/event/src/Dispatcher.php:454)
  at Joomla\Event\Dispatcher->dispatch('onAfterRespond', object(AfterRespondEvent))
     (/home/equinein/public_html/EIE-DEV-2025/libraries/vendor/joomla/application/src/AbstractApplication.php:99)
  at Joomla\Application\AbstractApplication->dispatchEvent('onAfterRespond', object(AfterRespondEvent))
     (/home/equinein/public_html/EIE-DEV-2025/libraries/src/Application/CMSApplication.php:347)
  at Joomla\CMS\Application\CMSApplication->execute()
     (/home/equinein/public_html/EIE-DEV-2025/includes/app.php:58)
  at require_once('/home/equinein/public_html/EIE-DEV-2025/includes/app.php')
     (/home/equinein/public_html/EIE-DEV-2025/index.php:51)