mysqli_sql_exception

HTTP 500 Whoops, looks like something went wrong.

Host '10.27.49.7' is not allowed to connect to this MariaDB server

mysqli_sql_exception

Show exception properties
0 of 0
mysqli_sql_exception {#2000 #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. *
  2. * @since 1.0
  3. */
  4. public function getVersion()
  5. {
  6. $this->connect();
  7. if ($this->mariadb) {
  8. // MariaDB: Strip off any leading '5.5.5-', if present
  9. return preg_replace('/^5\.5\.5-/', '', $this->connection->server_info);
  10. }
  1. $db = $this->getDatabase();
  2. $this->info = [
  3. 'php' => php_uname(),
  4. 'dbserver' => $db->getServerType(),
  5. 'dbversion' => $db->getVersion(),
  6. 'dbcollation' => $db->getCollation(),
  7. 'dbconnectioncollation' => $db->getConnectionCollation(),
  8. 'dbconnectionencryption' => $db->getConnectionEncryption(),
  9. 'dbconnencryptsupported' => $db->isConnectionEncryptionSupported(),
  10. 'phpversion' => PHP_VERSION,
  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 /customers/d/0/c/doppioelle.be/httpd.www/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. }
  1. // Set the application as global app
  2. \Joomla\CMS\Factory::$application = $app;
  3. // Execute the application.
  4. $app->execute();
require_once('/customers/d/0/c/doppioelle.be/httpd.www/includes/app.php') in /customers/d/0/c/doppioelle.be/httpd.www/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 __DIR__ . '/includes/app.php';