A PHP Error was encountered

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

Database Error

数据库发生错误。

无法使用提供的设置连接到数据库服务器。

Filename: core/MY_Controller.php

Line Number: 343


Fatal error: Uncaught Error: Call to a member function close() on string in /www/wwwroot/dash.konsole.xyz/application/core/MY_Controller.php:349 Stack trace: #0 [internal function]: Index_Controller->__destruct() #1 {main} thrown in /www/wwwroot/dash.konsole.xyz/application/core/MY_Controller.php on line 349
HEX
HEX
Server: Apache
System: Linux sys.digiflyeg.com 4.18.0-553.62.1.lve.el8.x86_64 #1 SMP Mon Jul 21 17:50:35 UTC 2025 x86_64
User: opal (1023)
PHP: 8.1.33
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/opal/public_html/wp-content/plugins/doubly/doubly.php
<?php
/*
Plugin Name: Doubly
Plugin URI: http://doubly.pro
Description: Copy, Paste, Export, Import pages and elementor sections between domains
Author: Unlimited Elements
Version: 1.0.46
*/

if(!defined("DOUBLY_INC"))
	define("DOUBLY_INC", true);

if(defined("DOUBLY_VERSION")){
	
	if(!defined("DOUBLY_BOTH_VERSIONS_INSTALLED"))
		define("DOUBLY_BOTH_VERSIONS_INSTALLED", true);

}else{
	
	define("DOUBLY_VERSION","1.0.46");
	
	if ( ! function_exists( 'doubly_freemius' ) ) {
	    // Create a helper function for easy SDK access.
	    function doubly_freemius() {
	        global $doubly_freemius;
	
	        if ( ! isset( $doubly_freemius ) ) {
	            // Include Freemius SDK.
	            require_once dirname(__FILE__) . '/vendor/freemius/start.php';
				
	            $doubly_freemius = fs_dynamic_init( array(
					'id'                  => '9579',
	                'slug'                => 'doubly',
	                'premium_slug'        => 'doubly-pro',
	                'type'                => 'plugin',
	                'public_key'          => 'pk_b682eb54fedb56bad60782fc78e2e',
	                'is_premium'          => false,
					'premium_suffix'      => '(Pro)',            
	                'is_premium_only'     => false,
	                'has_addons'          => false,
	                'has_paid_plans'      => true,
	                'menu'                => array(
	                    'slug'           => 'doubly',
	                    'support'        => false,
	                )
	            ));
	        }
	
	        return $doubly_freemius;
	    }
	
	    // Init Freemius.
	    doubly_freemius();
	    // Signal that SDK was initiated.
	    do_action( 'doubly_freemius_loaded' );
	}
	
	$mainFilepath = __FILE__;
	$currentFolder = dirname($mainFilepath);
	
	
	try{
		
		require_once $currentFolder.'/includes.php';
	
		if(GlobalsDOUBLY::$isAdmin == true)
			new Doubly_PluginAdmin();
		else
			new Doubly_PluginFront();
				
	}catch(Exception $e){
		
		$message = $e->getMessage();
		echo esc_html($message);
	}

	
}