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 /
user /
Delete
Unzip
Name
Size
Permission
Date
Action
.htaccess
197
B
-r--r--r--
2026-04-01 03:43
AssignmentWorkZone.apk
19.5
MB
-rw-r--r--
2026-03-28 16:09
assignment.php
20.18
KB
-rw-r--r--
2026-03-31 10:04
checkout.php
10.61
KB
-rw-r--r--
2026-03-13 17:01
dashboard.php
10.53
KB
-rw-r--r--
2026-03-31 10:21
history.php
3.6
KB
-rw-r--r--
2026-03-12 12:52
logout.php
91
B
-rw-r--r--
2026-03-11 23:27
pending.php
4.56
KB
-rw-r--r--
2026-03-12 01:29
plan-current.php
2.55
KB
-rw-r--r--
2026-03-11 23:27
profile.php
5.04
KB
-rw-r--r--
2026-03-28 15:45
referral-commissions.php
6.07
KB
-rw-r--r--
2026-03-12 00:37
referral.php
8.61
KB
-rw-r--r--
2026-03-28 15:31
select-plan.php
3.4
KB
-rw-r--r--
2026-03-11 23:27
support.php
12.43
KB
-rw-r--r--
2026-03-12 13:23
team-commission.php
2.82
KB
-rw-r--r--
2026-03-12 12:52
team-details.php
4.46
KB
-rw-r--r--
2026-03-12 15:31
withdraw-history.php
3.53
KB
-rw-r--r--
2026-03-12 12:52
withdraw.php
8.18
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_dashboard.php'; require_once '../includes/sidebar.php'; // Ensure user is active $stmt = $pdo->prepare("SELECT * FROM users WHERE id = ?"); $stmt->execute([$_SESSION['user_id']]); $user = $stmt->fetch(); if (!$user || $user['status'] != 'active') { header("Location: ../login.php"); exit; } // Fetch Referral Commissions $settings_stmt = $pdo->query("SELECT setting_key, setting_value FROM site_settings WHERE setting_key IN ('referral_commissions', 'referral_levels', 'currency_symbol')"); $site_settings = []; while ($row = $settings_stmt->fetch()) { $site_settings[$row['setting_key']] = $row['setting_value']; } $currency = $site_settings['currency_symbol'] ?? 'Rs'; $commissions_list = json_decode($site_settings['referral_commissions'] ?? '{"1": 10, "2": 5, "3": 2}', true) ?: []; if (!is_array($commissions_list)) { $commissions_list = ["1" => 10, "2" => 5, "3" => 2]; } ksort($commissions_list); // Fetch current active plan price for calculation $p_stmt = $pdo->prepare("SELECT p.price, p.name FROM user_plans up JOIN plans p ON up.plan_id = p.id WHERE up.user_id = ? AND up.status = 'active' LIMIT 1"); $p_stmt->execute([$user['id']]); $active_plan = $p_stmt->fetch(); $plan_price = $active_plan['price'] ?? 0; $plan_name = $active_plan['name'] ?? 'No Active Plan'; ?> <div style="max-width: 800px; margin: 0 auto; padding-bottom: 50px;"> <!-- Hero Banner (Matching Image Style) --> <div style="background: linear-gradient(135deg, #4f6cf7 0%, #3dd1e7 100%); padding: 50px 30px; border-radius: 35px; text-align: center; color: white; margin-bottom: 40px; box-shadow: 0 20px 40px rgba(79, 108, 247, 0.2); position: relative; overflow: hidden;"> <div style="position: absolute; top: -20px; right: -20px; font-size: 15rem; opacity: 0.1; transform: rotate(15deg);"> <i class="fas fa-sitemap"></i> </div> <div style="width: 80px; height: 80px; background: rgba(255,255,255,0.2); border-radius: 20px; display: flex; align-items: center; justify-content:center; margin: 0 auto 25px; font-size: 2.2rem;"> <i class="fas fa-network-wired"></i> </div> <h1 style="font-size: 2.5rem; font-weight: 800; margin-bottom: 15px; text-shadow: 0 2px 10px rgba(0,0,0,0.1);">Referral Level Income</h1> <p style="font-size: 1.15rem; opacity: 0.9;">Earn massive commissions up to <?php echo count($commissions_list); ?> levels deep!</p> </div> <!-- Levels List (Vertical Style Matching Image) --> <div style="display: flex; flex-direction: column; gap: 15px;"> <?php foreach ($commissions_list as $level => $percent): $is_direct = ($level == 1); $label = $is_direct ? "Direct Referrals" : "Indirect Team Level $level"; ?> <div class="level-card" style="display: flex; align-items: center; justify-content: space-between; padding: 20px 30px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.05); background: rgba(26, 26, 26, 0.6); backdrop-filter: blur(10px); transition: all 0.3s ease; cursor: pointer;"> <div style="display: flex; align-items: center; gap: 20px;"> <!-- LVL Circle --> <div style="width: 55px; height: 55px; background: #2f2f3f; color: white; border-radius: 12px; display: flex; flex-direction: column; align-items: center; justify-content: center; line-height: 1;"> <span style="font-size: 0.65rem; font-weight: 700; opacity: 0.8; text-transform: uppercase;">LVL</span> <span style="font-size: 1.4rem; font-weight: 900;"><?php echo $level; ?></span> </div> <div> <h4 style="margin: 0; font-size: 1.15rem; font-weight: 700;"><?php echo $label; ?></h4> <div style="margin-top: 5px; display: flex; gap: 8px; align-items: center;"> <?php if ($plan_price > 0): $earn = ($plan_price * $percent) / 100; ?> <span style="font-size: 0.75rem; color: #f1c40f; font-weight: 700;">+ <?php echo $currency; ?> <?php echo number_format($earn, 2); ?></span> <?php endif; ?> <?php if ($is_direct): ?> <span style="font-size: 0.65rem; background: rgba(0,210,106,0.1); color: var(--primary-color); padding: 2px 8px; border-radius: 4px; font-weight: 700; text-transform: uppercase;">Direct</span> <?php endif; ?> </div> </div> </div> <!-- Percentage Badge --> <div style="background: rgba(0,210,106,0.15); color: var(--primary-color); padding: 12px 25px; border-radius: 12px; font-size: 1.4rem; font-weight: 900; border: 1px solid rgba(0,210,106,0.2);"> <?php echo $percent; ?>% </div> </div> <?php endforeach; ?> </div> <!-- Info Footer --> <div style="margin-top: 40px; text-align: center; color: var(--text-muted); font-size: 0.95rem; line-height: 1.6;"> <p><i class="fas fa-info-circle"></i> Commissions are credited instantly to your balance whenever a team member activates a plan.</p> </div> </div> <style> .level-card:hover { box-shadow: 0 0 25px rgba(255, 255, 255, 0.15); border-color: rgba(255, 255, 255, 0.3) !important; transform: translateY(-2px); } body.light-theme .level-card:hover { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); border-color: var(--primary-color) !important; } body.light-theme .level-card { background: white !important; border-color: #eee !important; } body.light-theme [style*="background: #2f2f3f"] { background: #f0f0f5 !important; color: #333 !important; } </style> <?php require_once '../includes/footer_dashboard.php'; ?>