Linux spg1.cloudpowerdns.com 5.14.0-611.34.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 18 05:51:10 EST 2026 x86_64
LiteSpeed
Server IP : 176.9.63.151 & Your IP : 216.73.217.60
Domains :
Cant Read [ /etc/named.conf ]
User : fastear1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
fastear1 /
assignment.work.zone /
admin /
Delete
Unzip
Name
Size
Permission
Date
Action
includes
[ DIR ]
drwxr-xr-x
2026-03-11 22:58
.htaccess
197
B
-r--r--r--
2026-04-01 03:43
404.php
5.09
KB
-rw-r--r--
2026-03-12 12:29
admin-profile.php
4.68
KB
-rw-r--r--
2026-03-13 19:31
assignments.php
20.91
KB
-rw-r--r--
2026-03-30 15:12
deposits.php
8.48
KB
-rw-r--r--
2026-03-12 13:18
error_log
3.7
KB
-rw-r--r--
2026-03-23 09:01
index.php
137
B
-rw-r--r--
2026-03-12 12:26
index_real.php
3.95
KB
-rw-r--r--
2026-03-13 19:31
login.php
2.46
KB
-rw-r--r--
2026-03-13 19:32
logout.php
88
B
-rw-r--r--
2026-03-11 22:57
maintenance.php
3.68
KB
-rw-r--r--
2026-03-12 12:35
payment-methods.php
7.03
KB
-rw-r--r--
2026-03-12 12:35
plans.php
7.85
KB
-rw-r--r--
2026-03-12 12:35
referrals.php
4.91
KB
-rw-r--r--
2026-03-31 10:44
settings.php
17.83
KB
-rw-r--r--
2026-03-31 10:21
tickets.php
9.89
KB
-rw-r--r--
2026-03-12 13:15
users.php
19.8
KB
-rw-r--r--
2026-03-29 05:10
withdraw-methods.php
8.28
KB
-rw-r--r--
2026-03-12 15:17
withdrawals.php
6.26
KB
-rw-r--r--
2026-03-12 15:18
wp-blog-header.php
2.74
KB
-r--r--r--
2026-04-01 03:43
wp-cron.php
2.74
KB
-rw-r--r--
2026-04-01 03:43
Save
Rename
<?php require_once '../includes/config.php'; require_once 'includes/header.php'; require_once 'includes/sidebar.php'; $success = ''; $error = ''; // Handle Maintenance Toggle if ($_SERVER['REQUEST_METHOD'] == 'POST' && isset($_POST['toggle_maintenance'])) { $status = $_POST['maintenance_status'] == '1' ? '1' : '0'; // Check if setting exists $stmt = $pdo->prepare("SELECT COUNT(*) FROM site_settings WHERE setting_key = 'maintenance_mode'"); $stmt->execute(); if ($stmt->fetchColumn() == 0) { $stmt = $pdo->prepare("INSERT INTO site_settings (setting_key, setting_value) VALUES ('maintenance_mode', ?)"); } else { $stmt = $pdo->prepare("UPDATE site_settings SET setting_value = ? WHERE setting_key = 'maintenance_mode'"); } if ($stmt->execute([$status])) { $success = "Maintenance mode " . ($status == '1' ? 'enabled' : 'disabled') . " successfully."; } else { $error = "Failed to update maintenance mode."; } } // Fetch current status $stmt = $pdo->prepare("SELECT setting_value FROM site_settings WHERE setting_key = 'maintenance_mode'"); $stmt->execute(); $current_status = $stmt->fetchColumn() ?: '0'; ?> <div style="margin-bottom:30px;"> <h2>Maintenance Control</h2> <p style="color:var(--text-muted);">Enable this mode to perform site updates. Users will see a professional maintenance page.</p> </div> <?php if ($success): ?> <div class="badge badge-success" style="display:block; margin-bottom:20px; text-align:center; padding:15px; border-radius:8px;"><?php echo $success; ?></div> <?php endif; ?> <?php if ($error): ?> <div class="badge badge-danger" style="display:block; margin-bottom:20px; text-align:center; padding:15px; border-radius:8px;"><?php echo $error; ?></div> <?php endif; ?> <div class="card" style="max-width: 600px; margin: 0 auto; text-align: center; padding: 50px;"> <div style="font-size: 5rem; color: <?php echo $current_status == '1' ? '#e74c3c' : 'var(--primary-color)'; ?>; margin-bottom: 30px; animation: <?php echo $current_status == '1' ? 'pulse 2s infinite' : 'none'; ?>;"> <i class="fas <?php echo $current_status == '1' ? 'fa-tools' : 'fa-check-circle'; ?>"></i> </div> <h3 style="font-size: 2rem; margin-bottom: 20px;">System Status: <span style="color: <?php echo $current_status == '1' ? '#e74c3c' : 'var(--primary-color)'; ?>;"> <?php echo $current_status == '1' ? 'UNDER MAINTENANCE' : 'LIVE & OPERATIONAL'; ?> </span> </h3> <p style="color: var(--text-muted); margin-bottom: 40px; font-size: 1.1rem;"> <?php echo $current_status == '1' ? 'Currently, all users (except admins) are redirected to the maintenance page.' : 'Users can currently access all features of the website normally.'; ?> </p> <form method="POST"> <input type="hidden" name="maintenance_status" value="<?php echo $current_status == '1' ? '0' : '1'; ?>"> <button type="submit" name="toggle_maintenance" class="btn-primary" style="background: <?php echo $current_status == '1' ? '#e74c3c' : 'var(--primary-color)'; ?>; padding: 18px 45px; font-size: 1.2rem; border-radius: 50px; border: none; box-shadow: 0 10px 20px <?php echo $current_status == '1' ? 'rgba(231, 76, 60, 0.3)' : 'rgba(0, 210, 106, 0.3)'; ?>;"> <?php echo $current_status == '1' ? '<i class="fas fa-power-off"></i> Disable Maintenance Mode' : '<i class="fas fa-hammer"></i> Enable Maintenance Mode'; ?> </button> </form> </div> <style> @keyframes pulse { 0% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.1); opacity: 0.7; } 100% { transform: scale(1); opacity: 1; } } </style> <?php require_once 'includes/footer.php'; ?>