| Server IP : 104.21.4.30 / Your IP : 104.23.197.81 Web Server : Apache System : Linux keen-cori.18-142-40-148.plesk.page 5.15.0-1084-aws #91~20.04.1-Ubuntu SMP Fri May 2 06:59:36 UTC 2025 x86_64 User : simottodesign.com_2tntp341vs7 ( 10011) PHP Version : 8.3.31 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/vhosts/simottodesign.com/httpdocs/wp-content/plugins/wp-migrate-db/ |
Upload File : |
<?php
defined( 'ABSPATH' ) || exit;
use Dotenv\Dotenv;
$wpmdb_base_path = dirname(__FILE__);
$plugin_root = '/';
if(!defined('WPMDB_PLUGIN_PATH')){
define('WPMDB_PLUGIN_PATH', plugin_dir_path(__FILE__));
}
if( file_exists(__DIR__ . $plugin_root.".env") ) {
$dotenv = Dotenv::createImmutable(__DIR__ . $plugin_root);
$dotenv->load();
}
if (!defined('WPMDB_MINIMUM_WP_VERSION')) {
define('WPMDB_MINIMUM_WP_VERSION', '5.2');
}
if (!defined('WPMDB_MINIMUM_PHP_VERSION')) {
define('WPMDB_MINIMUM_PHP_VERSION', '5.6');
}
if (!class_exists('WPMDB_PHP_Checker')) {
require_once $wpmdb_base_path . '/php-checker.php';
}
$php_checker = new WPMDB_PHP_Checker(__FILE__, WPMDB_MINIMUM_PHP_VERSION);
if (!$php_checker->is_compatible_check()) {
register_activation_hook(__FILE__, array('WPMDB_PHP_Checker', 'wpmdb_pro_php_version_too_low'));
}
if (!function_exists('wpmdb_deactivate_other_instances')) {
require_once $wpmdb_base_path . '/class/deactivate.php';
}
add_action('activated_plugin', 'wpmdb_deactivate_other_instances');
add_action('wpmdb_migration_complete', 'wpmdb_deactivate_free_instance_after_migration', 10, 1);