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 /
public_html /
user /
Delete
Unzip
Name
Size
Permission
Date
Action
ajax_spin_wheel.php
3.28
KB
-rw-r--r--
2026-01-26 20:21
announcements.php
3.18
KB
-rw-r--r--
2025-12-25 17:46
daily_targets.php
15.36
KB
-rw-r--r--
2025-12-27 13:56
dashboard.php
35.82
KB
-rw-r--r--
2026-01-07 21:06
dpin_manage.php
8.8
KB
-rw-r--r--
2025-12-29 16:57
dpin_request.php
10.85
KB
-rw-r--r--
2025-12-29 16:53
footer.php
101
B
-rw-r--r--
2025-12-25 18:14
header.php
6.83
KB
-rw-r--r--
2026-01-26 22:06
history.php
23.07
KB
-rw-r--r--
2026-01-26 22:21
level_earning.php
18.53
KB
-rw-r--r--
2025-12-29 18:08
lucky_wheel.php
40.55
KB
-rw-r--r--
2026-01-26 22:22
my_plan.php
9.99
KB
-rw-r--r--
2025-12-29 16:00
plan_payment.php
19.84
KB
-rw-r--r--
2026-01-26 21:51
profile.php
9.06
KB
-rw-r--r--
2025-12-24 21:13
ranks.php
21.24
KB
-rw-r--r--
2025-12-27 13:42
referral.php
11.8
KB
-rw-r--r--
2025-12-24 21:26
support.php
10.32
KB
-rw-r--r--
2025-12-22 19:07
update_rank_popup.php
1.1
KB
-rw-r--r--
2025-12-27 13:31
watch_ad.php
6.68
KB
-rw-r--r--
2025-12-26 12:42
watch_ad_complete.php
4.34
KB
-rw-r--r--
2025-12-24 08:07
watch_ads.php
6.73
KB
-rw-r--r--
2025-12-26 12:01
withdraw.php
11.24
KB
-rw-r--r--
2025-12-24 22:35
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 define('USER_PANEL', true); require_once '../includes/config.php'; requireLogin(); $page_title = 'Level Earning Process'; $user = getUserData($_SESSION['user_id']); // Get Level Settings $maxLevels = (int) getSetting('max_referral_levels', 5); $activePlan = getActivePlan($_SESSION['user_id']); $userUptoLevel = $activePlan ? (int) $activePlan['upto_level'] : $maxLevels; // Default to max if no plan (or show all as teaser) $levels = []; for ($i = 1; $i <= $maxLevels; $i++) { $levels[$i] = getSetting("referral_level_{$i}_percent", 0); } include 'header.php'; ?> <div class="card earning-process-card" style="border: none; background: transparent; box-shadow: none;"> <!-- Premium Header --> <div class="earning-header" style=" background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%); padding: 40px 25px; border-radius: 24px; color: white; text-align: center; position: relative; overflow: hidden; margin-bottom: 25px; box-shadow: 0 15px 35px rgba(106, 17, 203, 0.3); "> <div style="position: relative; z-index: 2;"> <div style=" width: 70px; height: 70px; background: rgba(255, 255, 255, 0.2); backdrop-filter: blur(10px); border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 30px; margin: 0 auto 15px; border: 1px solid rgba(255, 255, 255, 0.3); "> <i class="fas fa-network-wired"></i> </div> <h2 style="margin: 0; font-size: 26px; font-weight: 800; letter-spacing: -0.5px;">Referral Level Income</h2> <p style="margin: 8px 0 0; font-size: 15px; opacity: 0.9; font-weight: 500;"> Earn commissions up to <strong><?php echo $maxLevels; ?> levels deep</strong>! </p> </div> <!-- Decorative bg --> <div style="position: absolute; top: -50px; right: -50px; width: 200px; height: 200px; background: rgba(255,255,255,0.05); border-radius: 50%;"> </div> <div style="position: absolute; bottom: -30px; left: -30px; width: 120px; height: 120px; background: rgba(255,255,255,0.05); border-radius: 50%;"> </div> </div> <div class="card-body" style="padding: 0;"> <!-- Level Grid --> <div class="level-list" style="display: grid; gap: 12px;"> <?php $pkrRate = (float) getSetting('pkr_rate', 280); $currency = getSetting('currency_symbol', '$'); // Prices to show (Teasers or Active Plan) if ($activePlan) { $activePrices = [$activePlan['plan_price']]; $noticeText = "Currently earning from:"; } else { // Fetch top 3 active plans as examples $stmt = $pdo->query("SELECT plan_price FROM plans WHERE status = 'active' ORDER BY plan_price ASC LIMIT 3"); $activePrices = $stmt->fetchAll(PDO::FETCH_COLUMN); $noticeText = "Estimated profit examples:"; } foreach ($levels as $level => $percent): // Skip if percent is 0 (Admin might have disabled this level) if ($percent <= 0) continue; $isLocked = ($activePlan && $level > $userUptoLevel); ?> <div class="level-card" style=" background: <?php echo $isLocked ? 'rgba(0,0,0,0.02)' : 'var(--card-bg)'; ?>; border: 1px solid <?php echo $isLocked ? 'rgba(255,255,255,0.05)' : 'var(--border-color)'; ?>; border-radius: 20px; padding: 18px; display: flex; align-items: center; gap: 15px; position: relative; transition: all 0.3s ease; <?php if ($isLocked) echo 'opacity: 0.5; filter: grayscale(1);'; ?> "> <!-- Level Badge --> <div style=" width: 55px; height: 55px; background: <?php echo $isLocked ? '#444' : 'linear-gradient(135deg, #6a11cb, #2575fc)'; ?>; border-radius: 15px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: white; box-shadow: <?php echo $isLocked ? 'none' : '0 8px 15px rgba(106, 17, 203, 0.2)'; ?>; "> <span style="font-size: 8px; text-transform: uppercase; font-weight: 800; opacity: 0.8;">LVL</span> <span style="font-size: 20px; font-weight: 900; line-height: 1;"><?php echo $level; ?></span> </div> <!-- Details --> <div style="flex: 1;"> <h4 style="margin: 0; font-size: 15px; color: var(--text-primary); font-weight: 700;"> <?php echo $level == 1 ? "Direct Referrals" : "Indirect Team Level " . $level; ?> <?php if ($isLocked): ?> <span style="font-size: 10px; background: rgba(231, 76, 60, 0.1); color: #e74c3c; padding: 2px 8px; border-radius: 5px; font-weight: 800; margin-left: 5px;"> <i class="fas fa-lock"></i> </span> <?php endif; ?> </h4> <!-- Profits --> <div style="display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px;"> <?php foreach ($activePrices as $price): $commUSD = ($price * $percent) / 100; $commPKR = $commUSD * $pkrRate; ?> <div style=" background: rgba(46, 204, 113, 0.08); border: 1px solid rgba(46, 204, 113, 0.15); padding: 4px 10px; border-radius: 8px; font-size: 11px; display: flex; align-items: center; gap: 5px; "> <span style="color: #2ecc71; font-weight: 800;"><?php echo $currency . number_format($commUSD, 2); ?></span> <span style="width: 1px; height: 10px; background: rgba(0,0,0,0.1);"></span> <span style="color: #f39c12; font-weight: 700;"><?php echo number_format($commPKR, 0); ?> PKR</span> </div> <?php endforeach; ?> </div> </div> <!-- Commission Badge on Right --> <div style=" background: <?php echo $isLocked ? '#555' : 'rgba(46, 204, 113, 0.2)'; ?>; color: <?php echo $isLocked ? '#aaa' : '#2ecc71'; ?>; padding: 8px 15px; border-radius: 12px; font-weight: 800; font-size: 14px; border: 1px solid <?php echo $isLocked ? 'transparent' : 'rgba(46, 204, 113, 0.3)'; ?>; "> <?php echo $percent; ?>% </div> </div> <?php endforeach; ?> </div> <?php if ($activePlan): ?> <?php if ($userUptoLevel >= $maxLevels): ?> <!-- Congratulations Banner (All Levels Unlocked) --> <div style=" margin-top: 30px; background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%); padding: 25px; border-radius: 24px; position: relative; overflow: hidden; box-shadow: 0 10px 25px rgba(39, 174, 96, 0.2); "> <div style="position: relative; z-index: 2;"> <div style="display: flex; align-items: center; gap: 12px; margin-bottom: 12px;"> <i class="fas fa-crown" style="color: #f1c40f; font-size: 20px;"></i> <h4 style="color: white; margin: 0; font-size: 17px; font-weight: 700;">Congratulations!</h4> </div> <p style="color: rgba(255,255,255,0.9); font-size: 13px; margin: 0; line-height: 1.5; max-width: 80%;"> You have successfully unlocked all <strong><?php echo $maxLevels; ?> levels</strong> of referral income! You are now earning maximum commissions from your entire team network. </p> </div> <!-- Bg Decoration --> <i class="fas fa-check-circle" style="position: absolute; right: -15px; bottom: -15px; font-size: 100px; color: rgba(255,255,255,0.1); transform: rotate(-10deg);"></i> </div> <?php else: ?> <!-- Stunning Upgrade Banner (Levels still locked) --> <div style=" margin-top: 30px; background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%); padding: 25px; border-radius: 24px; position: relative; overflow: hidden; box-shadow: 0 10px 25px rgba(142, 68, 173, 0.2); "> <div style="position: relative; z-index: 2;"> <div style="display: flex; align-items: center; gap: 12px; margin-bottom: 12px;"> <i class="fas fa-bolt" style="color: #f1c40f; font-size: 20px;"></i> <h4 style="color: white; margin: 0; font-size: 17px; font-weight: 700;">Maximize Your Profits</h4> </div> <p style="color: rgba(255,255,255,0.9); font-size: 13px; margin: 0 0 20px; line-height: 1.5; max-width: 80%;"> You are currently limited to <strong>Level <?php echo $userUptoLevel; ?></strong>. Upgrade your plan to unlock all <strong><?php echo $maxLevels; ?> levels</strong> and never miss a commission! </p> <a href="my_plan.php" style=" display: inline-block; padding: 12px 30px; background: white; color: #8e44ad; text-decoration: none; border-radius: 14px; font-weight: 800; font-size: 14px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); transition: transform 0.2s ease; " onmouseover="this.style.transform='translateY(-2px)'" onmouseout="this.style.transform='translateY(0)'"> 🚀 Upgrade Now </a> </div> <!-- Bg Decoration --> <i class="fas fa-layer-group" style="position: absolute; right: -15px; bottom: -15px; font-size: 100px; color: rgba(255,255,255,0.1); transform: rotate(-10deg);"></i> </div> <?php endif; ?> <?php else: ?> <div style=" margin-top: 30px; padding: 30px; background: var(--card-bg); border: 2px dashed #6a11cb; border-radius: 24px; text-align: center; "> <h4 style="color: var(--primary-color); margin-bottom: 10px; font-weight: 800;">Build Your Empire Today! </h4> <p style="color: var(--text-secondary); font-size: 14px; margin-bottom: 20px;"> Join thousands of members earning passive income from their global team. Activation takes less than 2 minutes. </p> <a href="my_plan.php" class="btn btn-primary" style="padding: 12px 40px; border-radius: 14px; font-weight: 800;"> <i class="fas fa-rocket"></i> Activate My Account </a> </div> <?php endif; ?> </div> </div> <style> .earning-process-card { border: none; overflow: hidden; background: var(--card-bg); } .earning-header { background: linear-gradient(135deg, var(--primary-color), #6366f1) !important; padding: 30px 20px !important; display: flex; align-items: center; gap: 20px; color: white; } .header-icon { width: 60px; height: 60px; background: rgba(255, 255, 255, 0.2); border-radius: 15px; display: flex; align-items: center; justify-content: center; font-size: 24px; backdrop-filter: blur(10px); } .header-text h2 { margin: 0; font-size: 22px; font-weight: 700; } .header-text p { margin: 5px 0 0; font-size: 14px; opacity: 0.9; } .info-alert { background: rgba(99, 102, 241, 0.1); border: 1px solid rgba(99, 102, 241, 0.2); padding: 15px; border-radius: 12px; display: flex; gap: 12px; align-items: center; margin-bottom: 25px; color: var(--text-primary); font-size: 13px; } .info-alert i { color: var(--primary-color); font-size: 18px; } .level-list { display: flex; flex-direction: column; gap: 15px; } .level-item { background: var(--dark-bg); border: 1px solid var(--border-color); padding: 15px; border-radius: 16px; display: flex; align-items: center; gap: 15px; transition: transform 0.3s ease; } .level-card:hover { transform: translateX(8px); border-color: #ffffffff; box-shadow: 0 0 20px rgba(255, 255, 255, 1), inset 0 0 10px rgba(46, 204, 113, 0.1); } .level-number { width: 50px; height: 50px; background: var(--card-bg); border-radius: 12px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid var(--border-color); } .l-text { font-size: 9px; text-transform: uppercase; color: var(--text-secondary); font-weight: 700; } .l-num { font-size: 18px; font-weight: 800; color: var(--primary-color); } .level-details { flex: 1; } .level-title { font-size: 14px; font-weight: 600; color: var(--text-primary); margin-bottom: 8px; } .level-progress { height: 6px; background: rgba(255, 255, 255, 0.05); border-radius: 10px; overflow: hidden; } .progress-fill { height: 100%; background: var(--primary-color); border-radius: 10px; box-shadow: 0 0 10px var(--primary-color); } .level-badge { background: var(--primary-color); color: white; padding: 6px 12px; border-radius: 10px; font-weight: 700; font-size: 14px; } .process-section { margin-top: 35px; padding-top: 25px; border-top: 1px solid var(--border-color); } .section-title { font-size: 18px; font-weight: 700; color: var(--text-primary); margin-bottom: 20px; text-align: center; } .process-steps { display: flex; flex-direction: column; gap: 20px; } .p-step { display: flex; gap: 15px; align-items: flex-start; } .p-icon { width: 40px; height: 40px; background: rgba(255, 255, 255, 0.05); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--primary-color); font-size: 16px; flex-shrink: 0; } .p-text strong { display: block; font-size: 15px; color: var(--text-primary); margin-bottom: 3px; } .p-text p { font-size: 13px; color: var(--text-secondary); margin: 0; } @media (max-width: 576px) { .level-item { padding: 12px; } .level-number { width: 40px; height: 40px; } .l-num { font-size: 16px; } .level-badge { padding: 4px 8px; font-size: 12px; } } </style> <?php include 'footer.php'; ?>