Severity: Warning
Message: mysqli::real_connect(): (HY000/2002): Cannot assign requested address
Filename: mysqli/mysqli_driver.php
Line Number: 201
Backtrace:
File: /www/wwwroot/dash.konsole.xyz/application/core/MY_Controller.php
Line: 343
Function: __construct
File: /www/wwwroot/dash.konsole.xyz/application/controllers/Api.php
Line: 12
Function: __construct
File: /www/wwwroot/dash.konsole.xyz/index.php
Line: 316
Function: require_once
无法使用提供的设置连接到数据库服务器。
Filename: core/MY_Controller.php
Line Number: 343
<?php /** * Flatsome_Envato class. * * @package Flatsome */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } /** * The Flatsome Envato. */ final class Flatsome_Envato { /** * The single class instance. * * @var object */ private static $instance = null; /** * The registration instance. * * @var Flatsome_Base_Registration */ public $registration; /** * Setup instance properties. */ private function __construct() { $api = new UxThemes_API(); if ( get_option( 'flatsome_envato' ) ) { $this->registration = new Flatsome_Envato_Registration( $api ); } elseif ( get_option( flatsome_theme_key() . '_wup_purchase_code' ) ) { $this->registration = new Flatsome_WUpdates_Registration( $api ); } else { $this->registration = new Flatsome_Registration( $api ); } if ( is_admin() ) { $this->admin = new Flatsome_Envato_Admin( $this->registration ); } } /** * Checks whether this site is registered or not. * * @return boolean */ public function is_registered() { return $this->registration->is_registered(); } /** * Main Flatsome_Envato instance * * @return Flatsome_Envato */ public static function get_instance() { if ( is_null( self::$instance ) ) { self::$instance = new self(); } return self::$instance; } }