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'; $stmt = $pdo->prepare("SELECT p.*, up.purchased_at FROM user_plans up JOIN plans p ON up.plan_id = p.id WHERE up.user_id = ? AND up.status = 'active' LIMIT 1"); $stmt->execute([$_SESSION['user_id']]); $active_plan = $stmt->fetch(); if (!$active_plan) { header("Location: select-plan.php"); exit; } ?> <h2 style="margin-bottom:30px;">Current Active Plan</h2> <div class="card <?php echo $active_plan['is_premium'] ? 'premium-card' : ''; ?>" style="text-align:left; max-width:600px;"> <h3 style="margin-bottom:15px; color:var(--primary-color); display:flex; justify-content:space-between; align-items:center;"> <?php echo htmlspecialchars($active_plan['name']); ?> <span class="badge badge-success" style="font-size:0.8rem;">Active</span> </h3> <div style="font-size:2rem; font-weight:700; color:var(--text-light); margin-bottom:10px;"> Rs <?php echo number_format($active_plan['price'], 2); ?> </div> <div style="display:flex; justify-content:space-between; color:var(--text-muted); font-size:0.9rem; margin-bottom:20px;"> <span>Purchased: <?php echo date('M d, Y', strtotime($active_plan['purchased_at'])); ?></span> <span> Validity: <?php if ($active_plan['validity_type'] == 'lifetime') { echo "Lifetime"; } else { echo htmlspecialchars($active_plan['validity_days']) . " Days"; } ?> </span> </div> <div style="background:rgba(255,255,255,0.05); padding:15px; border-radius:8px; margin-bottom:20px;"> <strong style="display:block; margin-bottom:5px;">Assignment Pay Rate:</strong> <span style="color:var(--primary-color); font-weight:600;">Rs <?php echo number_format($active_plan['assignment_pay'], 2); ?> per approved assignment</span> </div> <h4 style="margin-bottom:10px;">Plan Features</h4> <ul style="border-top:1px solid rgba(255,255,255,0.05); padding-top:15px; display:flex; flex-direction:column; gap:10px;"> <?php $features = explode("\n", $active_plan['features']); foreach ($features as $feature): $feature = trim($feature); if (!empty($feature)): ?> <li><i class="fas fa-check" style="color:var(--primary-color); margin-right:10px;"></i><?php echo htmlspecialchars($feature); ?></li> <?php endif; endforeach; ?> </ul> </div> <?php require_once '../includes/footer_dashboard.php'; ?>