ErrorException (E_WARNING)
mysqli_real_connect(): (HY000/1203): User sc1brph2983_preproduction already has more than 'max_user_connections' active connections ErrorException thrown with message "mysqli_real_connect(): (HY000/1203): User sc1brph2983_preproduction already has more than 'max_user_connections' active connections" Stacktrace: #8 ErrorException in /home2/sc1brph2983/private_html/htdocs/cms/wp-includes/wp-db.php:1753 #7 mysqli_real_connect in /home2/sc1brph2983/private_html/htdocs/cms/wp-includes/wp-db.php:1753 #6 wpdb:db_connect in /home2/sc1brph2983/private_html/htdocs/cms/wp-includes/wp-db.php:724 #5 wpdb:__construct in /home2/sc1brph2983/private_html/htdocs/cms/wp-includes/load.php:561 #4 require_wp_db in /home2/sc1brph2983/private_html/htdocs/cms/wp-settings.php:124 #3 require_once in /home2/sc1brph2983/private_html/htdocs/wp-config.php:50 #2 require_once in /home2/sc1brph2983/private_html/htdocs/cms/wp-load.php:55 #1 require_once in /home2/sc1brph2983/private_html/htdocs/cms/wp-blog-header.php:13 #0 require in /home2/sc1brph2983/private_html/htdocs/index.php:11
8
ErrorException
/htdocs/cms/wp-includes/wp-db.php1753
7
mysqli_real_connect
/htdocs/cms/wp-includes/wp-db.php1753
6
wpdb db_connect
/htdocs/cms/wp-includes/wp-db.php724
5
wpdb __construct
/htdocs/cms/wp-includes/load.php561
4
require_wp_db
/htdocs/cms/wp-settings.php124
3
require_once
/htdocs/wp-config.php50
2
require_once
/htdocs/cms/wp-load.php55
1
require_once
/htdocs/cms/wp-blog-header.php13
0
require
/htdocs/index.php11
/home2/sc1brph2983/private_html/htdocs/cms/wp-includes/wp-db.php
            $port    = null;
            $socket  = null;
            $is_ipv6 = false;
 
            $host_data = $this->parse_db_host( $this->dbhost );
            if ( $host_data ) {
                list( $host, $port, $socket, $is_ipv6 ) = $host_data;
            }
 
            /*
             * If using the `mysqlnd` library, the IPv6 address needs to be enclosed
             * in square brackets, whereas it doesn't while using the `libmysqlclient` library.
             * @see https://bugs.php.net/bug.php?id=67563
             */
            if ( $is_ipv6 && extension_loaded( 'mysqlnd' ) ) {
                $host = "[$host]";
            }
 
            if ( WP_DEBUG ) {
                mysqli_real_connect( $this->dbh, $host, $this->dbuser, $this->dbpassword, null, $port, $socket, $client_flags );
            } else {
                // phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged
                @mysqli_real_connect( $this->dbh, $host, $this->dbuser, $this->dbpassword, null, $port, $socket, $client_flags );
            }
 
            if ( $this->dbh->connect_errno ) {
                $this->dbh = null;
 
                /*
                 * It's possible ext/mysqli is misconfigured. Fall back to ext/mysql if:
                 *  - We haven't previously connected, and
                 *  - WP_USE_EXT_MYSQL isn't set to false, and
                 *  - ext/mysql is loaded.
                 */
                $attempt_fallback = true;
 
                if ( $this->has_connected ) {
                    $attempt_fallback = false;
                } elseif ( defined( 'WP_USE_EXT_MYSQL' ) && ! WP_USE_EXT_MYSQL ) {
                    $attempt_fallback = false;
Arguments
  1. "mysqli_real_connect(): (HY000/1203): User sc1brph2983_preproduction already has more than 'max_user_connections' active connections"
    
/home2/sc1brph2983/private_html/htdocs/cms/wp-includes/wp-db.php
            $port    = null;
            $socket  = null;
            $is_ipv6 = false;
 
            $host_data = $this->parse_db_host( $this->dbhost );
            if ( $host_data ) {
                list( $host, $port, $socket, $is_ipv6 ) = $host_data;
            }
 
            /*
             * If using the `mysqlnd` library, the IPv6 address needs to be enclosed
             * in square brackets, whereas it doesn't while using the `libmysqlclient` library.
             * @see https://bugs.php.net/bug.php?id=67563
             */
            if ( $is_ipv6 && extension_loaded( 'mysqlnd' ) ) {
                $host = "[$host]";
            }
 
            if ( WP_DEBUG ) {
                mysqli_real_connect( $this->dbh, $host, $this->dbuser, $this->dbpassword, null, $port, $socket, $client_flags );
            } else {
                // phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged
                @mysqli_real_connect( $this->dbh, $host, $this->dbuser, $this->dbpassword, null, $port, $socket, $client_flags );
            }
 
            if ( $this->dbh->connect_errno ) {
                $this->dbh = null;
 
                /*
                 * It's possible ext/mysqli is misconfigured. Fall back to ext/mysql if:
                 *  - We haven't previously connected, and
                 *  - WP_USE_EXT_MYSQL isn't set to false, and
                 *  - ext/mysql is loaded.
                 */
                $attempt_fallback = true;
 
                if ( $this->has_connected ) {
                    $attempt_fallback = false;
                } elseif ( defined( 'WP_USE_EXT_MYSQL' ) && ! WP_USE_EXT_MYSQL ) {
                    $attempt_fallback = false;
Arguments
  1. mysqli {#1130}
    
  2. "localhost"
    
  3. "sc1brph2983_preproduction"
    
  4. ")p#FO*]3cgdT_r)yT)"
    
  5. null
    
  6. null
    
  7. null
    
  8. 0
    
/home2/sc1brph2983/private_html/htdocs/cms/wp-includes/wp-db.php
        // Use the `mysqli` extension if it exists unless `WP_USE_EXT_MYSQL` is defined as true.
        if ( function_exists( 'mysqli_connect' ) ) {
            $this->use_mysqli = true;
 
            if ( defined( 'WP_USE_EXT_MYSQL' ) ) {
                $this->use_mysqli = ! WP_USE_EXT_MYSQL;
            }
        }
 
        $this->dbuser     = $dbuser;
        $this->dbpassword = $dbpassword;
        $this->dbname     = $dbname;
        $this->dbhost     = $dbhost;
 
        // wp-config.php creation will manually connect when ready.
        if ( defined( 'WP_SETUP_CONFIG' ) ) {
            return;
        }
 
        $this->db_connect();
    }
 
    /**
     * Makes private properties readable for backward compatibility.
     *
     * @since 3.5.0
     *
     * @param string $name The private member to get, and optionally process.
     * @return mixed The private member.
     */
    public function __get( $name ) {
        if ( 'col_info' === $name ) {
            $this->load_col_info();
        }
 
        return $this->$name;
    }
 
    /**
     * Makes private properties settable for backward compatibility.
/home2/sc1brph2983/private_html/htdocs/cms/wp-includes/load.php
 * @global wpdb $wpdb WordPress database abstraction object.
 */
function require_wp_db() {
    global $wpdb;
 
    require_once ABSPATH . WPINC . '/wp-db.php';
    if ( file_exists( WP_CONTENT_DIR . '/db.php' ) ) {
        require_once WP_CONTENT_DIR . '/db.php';
    }
 
    if ( isset( $wpdb ) ) {
        return;
    }
 
    $dbuser     = defined( 'DB_USER' ) ? DB_USER : '';
    $dbpassword = defined( 'DB_PASSWORD' ) ? DB_PASSWORD : '';
    $dbname     = defined( 'DB_NAME' ) ? DB_NAME : '';
    $dbhost     = defined( 'DB_HOST' ) ? DB_HOST : '';
 
    $wpdb = new wpdb( $dbuser, $dbpassword, $dbname, $dbhost );
}
 
/**
 * Set the database table prefix and the format specifiers for database
 * table columns.
 *
 * Columns not listed here default to `%s`.
 *
 * @since 3.0.0
 * @access private
 *
 * @global wpdb   $wpdb         WordPress database abstraction object.
 * @global string $table_prefix The database table prefix.
 */
function wp_set_wpdb_vars() {
    global $wpdb, $table_prefix;
    if ( ! empty( $wpdb->error ) ) {
        dead_db();
    }
 
Arguments
  1. "sc1brph2983_preproduction"
    
  2. ")p#FO*]3cgdT_r)yT)"
    
  3. "sc1brph2983_preproduction"
    
  4. "localhost"
    
/home2/sc1brph2983/private_html/htdocs/cms/wp-settings.php
 
// Load early WordPress files.
require ABSPATH . WPINC . '/compat.php';
require ABSPATH . WPINC . '/class-wp-list-util.php';
require ABSPATH . WPINC . '/formatting.php';
require ABSPATH . WPINC . '/meta.php';
require ABSPATH . WPINC . '/functions.php';
require ABSPATH . WPINC . '/class-wp-meta-query.php';
require ABSPATH . WPINC . '/class-wp-matchesmapregex.php';
require ABSPATH . WPINC . '/class-wp.php';
require ABSPATH . WPINC . '/class-wp-error.php';
require ABSPATH . WPINC . '/pomo/mo.php';
 
/**
 * @global wpdb $wpdb WordPress database abstraction object.
 * @since 0.71
 */
global $wpdb;
// Include the wpdb class and, if present, a db.php database drop-in.
require_wp_db();
 
// Set the database table prefix and the format specifiers for database table columns.
$GLOBALS['table_prefix'] = $table_prefix;
wp_set_wpdb_vars();
 
// Start the WordPress object cache, or an external object cache if the drop-in is present.
wp_start_object_cache();
 
// Attach the default filters.
require ABSPATH . WPINC . '/default-filters.php';
 
// Initialize multisite if enabled.
if ( is_multisite() ) {
    require ABSPATH . WPINC . '/class-wp-site-query.php';
    require ABSPATH . WPINC . '/class-wp-network-query.php';
    require ABSPATH . WPINC . '/ms-blogs.php';
    require ABSPATH . WPINC . '/ms-settings.php';
} elseif ( ! defined( 'MULTISITE' ) ) {
    define( 'MULTISITE', false );
}
/home2/sc1brph2983/private_html/htdocs/wp-config.php
|--------------------------------------------------------------------------
|
| We're going to initialize the kernel instance and capture the current
| request. We won't directly manage a response from the current file.
| We let WordPress bootstrap its stuff and we'll manage the response
| once WordPress is fully loaded.
|
*/
$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
$kernel->init(
    Illuminate\Http\Request::capture()
);
 
/*----------------------------------------------------*/
// Database prefix (WordPress)
/*----------------------------------------------------*/
$table_prefix = env('DATABASE_PREFIX', 'wp_');
 
/* That's all, stop editing! Happy blogging. */
require_once ABSPATH.'/wp-settings.php';
 
Arguments
  1. "/home2/sc1brph2983/private_html/htdocs/cms/wp-settings.php"
    
/home2/sc1brph2983/private_html/htdocs/cms/wp-load.php
    error_reporting( E_CORE_ERROR | E_CORE_WARNING | E_COMPILE_ERROR | E_ERROR | E_WARNING | E_PARSE | E_USER_ERROR | E_USER_WARNING | E_RECOVERABLE_ERROR );
}
 
/*
 * If wp-config.php exists in the WordPress root, or if it exists in the root and wp-settings.php
 * doesn't, load wp-config.php. The secondary check for wp-settings.php has the added benefit
 * of avoiding cases where the current directory is a nested installation, e.g. / is WordPress(a)
 * and /blog/ is WordPress(b).
 *
 * If neither set of conditions is true, initiate loading the setup process.
 */
if ( file_exists( ABSPATH . 'wp-config.php' ) ) {
 
    /** The config file resides in ABSPATH */
    require_once ABSPATH . 'wp-config.php';
 
} elseif ( @file_exists( dirname( ABSPATH ) . '/wp-config.php' ) && ! @file_exists( dirname( ABSPATH ) . '/wp-settings.php' ) ) {
 
    /** The config file resides one level above ABSPATH but is not part of another installation */
    require_once dirname( ABSPATH ) . '/wp-config.php';
 
} else {
 
    // A config file doesn't exist.
 
    define( 'WPINC', 'wp-includes' );
    require_once ABSPATH . WPINC . '/load.php';
 
    // Standardize $_SERVER variables across setups.
    wp_fix_server_vars();
 
    require_once ABSPATH . WPINC . '/functions.php';
 
    $path = wp_guess_url() . '/wp-admin/setup-config.php';
 
    /*
     * We're going to redirect to setup-config.php. While this shouldn't result
     * in an infinite loop, that's a silly thing to assume, don't you think? If
     * we're traveling in circles, our last-ditch effort is "Need more help?"
     */
Arguments
  1. "/home2/sc1brph2983/private_html/htdocs/wp-config.php"
    
/home2/sc1brph2983/private_html/htdocs/cms/wp-blog-header.php
<?php
/**
 * Loads the WordPress environment and template.
 *
 * @package WordPress
 */
 
if ( ! isset( $wp_did_header ) ) {
 
    $wp_did_header = true;
 
    // Load the WordPress library.
    require_once __DIR__ . '/wp-load.php';
 
    // Set up the WordPress query.
    wp();
 
    // Load the theme template.
    require_once ABSPATH . WPINC . '/template-loader.php';
 
}
 
Arguments
  1. "/home2/sc1brph2983/private_html/htdocs/cms/wp-load.php"
    
/home2/sc1brph2983/private_html/htdocs/index.php
<?php
 
/**
 * Tells WordPress to load the WordPress theme and output it.
 *
 * @var bool
 */
define('WP_USE_THEMES', true);
 
/** Loads the WordPress Environment and Template */
require dirname(__FILE__).'/cms/wp-blog-header.php';
 
Arguments
  1. "/home2/sc1brph2983/private_html/htdocs/cms/wp-blog-header.php"
    

Environment & details:

empty
empty
empty
empty
empty
Key Value
SERVER_SOFTWARE
"Apache"
REQUEST_URI
"/equipement/aalpes-rando-crots/"
PATH
"/usr/local/bin:/usr/bin:/bin"
TEMP
"/tmp"
TMP
"/tmp"
TMPDIR
"/tmp"
PWD
"/"
LSCAPI_CRIU_SYNC_FD
"7"
HTTP_ACCEPT
"*/*"
CONTENT_LENGTH
"0"
HTTP_HOST
"serreponcon-tourisme-2019.com"
HTTP_USER_AGENT
"claudebot"
HTTP_X_COUNTRY_CODE
"US"
HTTP_X_AUTONOMOUS_SYSTEM
"14618"
HTTP_X_REAL_IP
"44.212.93.133"
HTTP_X_FORWARDED_PROTO
"http"
HTTP_CF_CONNECTING_IP
"44.212.93.133"
HTTP_CF_VISITOR
"{"scheme":"http"}"
HTTP_CF_RAY
"86c0e6d82d950a87-IAD"
HTTP_CDN_LOOP
"cloudflare"
HTTP_CF_IPCOUNTRY
"US"
REDIRECT_UNIQUE_ID
"ZgbemJ3sJ16NjiPT4zFU7gAAAAw"
REDIRECT_SCRIPT_URL
"/equipement/aalpes-rando-crots/"
REDIRECT_SCRIPT_URI
"http://serreponcon-tourisme-2019.com/equipement/aalpes-rando-crots/"
REDIRECT_HTTP_AUTHORIZATION
""
REDIRECT_STATUS
"200"
UNIQUE_ID
"ZgbemJ3sJ16NjiPT4zFU7gAAAAw"
SCRIPT_URL
"/equipement/aalpes-rando-crots/"
SCRIPT_URI
"http://serreponcon-tourisme-2019.com/equipement/aalpes-rando-crots/"
HTTP_AUTHORIZATION
""
SERVER_SIGNATURE
""
SERVER_NAME
"serreponcon-tourisme-2019.com"
SERVER_ADDR
"109.234.161.192"
SERVER_PORT
"80"
REMOTE_ADDR
"44.212.93.133"
DOCUMENT_ROOT
"/home2/sc1brph2983/private_html/htdocs"
REQUEST_SCHEME
"http"
CONTEXT_PREFIX
""
CONTEXT_DOCUMENT_ROOT
"/home2/sc1brph2983/private_html/htdocs"
SERVER_ADMIN
"[email protected]"
SCRIPT_FILENAME
"/home2/sc1brph2983/private_html/htdocs/index.php"
REMOTE_PORT
"43744"
REDIRECT_URL
"/equipement/aalpes-rando-crots/"
SERVER_PROTOCOL
"HTTP/1.1"
REQUEST_METHOD
"GET"
QUERY_STRING
""
SCRIPT_NAME
"/index.php"
PHP_SELF
"/index.php"
REQUEST_TIME_FLOAT
1711726232.2427
REQUEST_TIME
1711726232
APP_ENV
"local"
APP_DEBUG
"true"
APP_DEBUG_DISABLE_NOTICE
"true"
APP_KEY
"base64:zSHfF1Qpzm4HpZlytYyae3oSahghiGAfpcDH6yT75ZY="
APP_TD
"themosis"
APP_URL
"http://serreponcon-tourisme-2019.com"
WP_URL
"http://serreponcon-tourisme-2019.com/cms"
DATABASE_NAME
"sc1brph2983_preproduction"
DATABASE_USER
"sc1brph2983_preproduction"
DATABASE_PASSWORD
")p#FO*]3cgdT_r)yT)"
DATABASE_HOST
"localhost"
PROJETID
"3468"
GENERATE_POIS_ITERATION
"200"
PLUGIN_ACF_KEY
"b3JkZXJfaWQ9OTAxMDF8dHlwZT1kZXZlbG9wZXJ8ZGF0ZT0yMDE2LTA5LTIxIDA4OjAyOjMx"
PLUGIN_ACF_VERSION
"5.9.0"
Key Value
PATH
"/usr/local/bin:/usr/bin:/bin"
TEMP
"/tmp"
TMP
"/tmp"
TMPDIR
"/tmp"
PWD
"/"
LSCAPI_CRIU_SYNC_FD
"7"
APP_ENV
"local"
APP_DEBUG
"true"
APP_DEBUG_DISABLE_NOTICE
"true"
APP_KEY
"base64:zSHfF1Qpzm4HpZlytYyae3oSahghiGAfpcDH6yT75ZY="
APP_TD
"themosis"
APP_URL
"http://serreponcon-tourisme-2019.com"
WP_URL
"http://serreponcon-tourisme-2019.com/cms"
DATABASE_NAME
"sc1brph2983_preproduction"
DATABASE_USER
"sc1brph2983_preproduction"
DATABASE_PASSWORD
")p#FO*]3cgdT_r)yT)"
DATABASE_HOST
"localhost"
PROJETID
"3468"
GENERATE_POIS_ITERATION
"200"
PLUGIN_ACF_KEY
"b3JkZXJfaWQ9OTAxMDF8dHlwZT1kZXZlbG9wZXJ8ZGF0ZT0yMDE2LTA5LTIxIDA4OjAyOjMx"
PLUGIN_ACF_VERSION
"5.9.0"
0. Whoops\Handler\PrettyPageHandler