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 = 'My Plan'; // Get all active plans $stmt = $pdo->prepare("SELECT * FROM plans WHERE status = 'active' ORDER BY plan_price ASC"); $stmt->execute(); $plans = $stmt->fetchAll(); // Get user's plans $stmt = $pdo->prepare(" SELECT up.*, p.plan_name, p.plan_price, p.ads_limit_per_day, p.plan_duration FROM user_plans up JOIN plans p ON up.plan_id = p.id WHERE up.user_id = ? ORDER BY up.created_at DESC "); $stmt->execute([$_SESSION['user_id']]); $userPlans = $stmt->fetchAll(); include 'header.php'; ?> <?php $success = getSuccess(); if ($success) { echo '<div class="alert alert-success"><i class="fas fa-check-circle"></i> ' . htmlspecialchars($success) . '</div>'; } $error = getError(); if ($error) { echo '<div class="alert alert-danger"><i class="fas fa-exclamation-circle"></i> ' . htmlspecialchars($error) . '</div>'; } ?> <?php // Check if user already has an active plan $hasActive = hasActivePlan($_SESSION['user_id']); ?> <!-- Available Plans --> <div class="card"> <div class="card-header"> <i class="fas fa-box"></i> Available Plans </div> <div class="card-body"> <?php if (empty($plans)): ?> <p style="color: var(--text-secondary); text-align: center;">No plans available at the moment.</p> <?php else: ?> <?php if ($hasActive): $activePlan = getActivePlan($_SESSION['user_id']); ?> <div class="alert alert-info" style="background: rgba(46, 204, 113, 0.1); border-color: rgba(46, 204, 113, 0.2); color: var(--text-primary);"> <i class="fas fa-rocket"></i> You have an <strong>Active Plan</strong>. You can Upgrade to a higher tier plan anytime for more earning power! </div> <?php endif; ?> <?php foreach ($plans as $plan): ?> <div class="card" style="margin-bottom: 15px; background: var(--dark-bg); border: 2px solid var(--primary-color);"> <div class="card-body"> <h3 style="color: var(--primary-color); margin-bottom: 10px;"> <?php echo htmlspecialchars($plan['plan_name']); ?> </h3> <div style="font-size: 32px; font-weight: bold; color: var(--text-primary); margin-bottom: 15px;"> <?php echo getSetting('currency_symbol', '$'); ?> <?php echo number_format($plan['plan_price'], 3); ?> </div> <ul style="list-style: none; padding: 0; margin-bottom: 20px;"> <li style="padding: 8px 0; color: var(--text-secondary);"> <i class="fas fa-check" style="color: var(--success-color);"></i> <?php echo $plan['ads_limit_per_day']; ?> Ads per day </li> <li style="padding: 8px 0; color: var(--text-secondary);"> <i class="fas fa-check" style="color: var(--success-color);"></i> <?php echo $plan['plan_duration'] > 0 ? $plan['plan_duration'] . ' Days' : 'Lifetime'; ?> validity </li> <li style="padding: 8px 0; color: var(--text-secondary);"> <i class="fas fa-check" style="color: var(--success-color);"></i> Earn from watching ads </li> <li style="padding: 8px 0; color: var(--text-secondary);"> <i class="fas fa-check" style="color: var(--success-color);"></i> Referral bonuses: <strong>Upto Level <?php echo $plan['upto_level'] ?? 5; ?></strong> </li> </ul> <?php $isCurrent = ($hasActive && $activePlan['plan_id'] == $plan['id']); $isUpgrade = ($hasActive && $plan['plan_price'] > $activePlan['plan_price'] && $activePlan['plan_id'] != $plan['id']); $isLower = ($hasActive && $plan['plan_price'] <= $activePlan['plan_price'] && $activePlan['plan_id'] != $plan['id']); if ($isCurrent): ?> <button class="btn btn-secondary btn-block" style="border: 2px solid #2ecc71; color: #2ecc71;" disabled> <i class="fas fa-check-circle"></i> Current Plan </button> <?php elseif ($isUpgrade): ?> <a href="plan_payment.php?plan_id=<?php echo $plan['id']; ?>" class="btn btn-warning btn-block" style="font-weight: bold; background: #8e44ad; border-color: #8e44ad; color: white; box-shadow: 0 4px 12px rgba(142,68,173,0.3);"> <i class="fas fa-arrow-circle-up"></i> Upgrade Now </a> <?php elseif ($isLower): ?> <button class="btn btn-secondary btn-block" disabled title="You can only upgrade to higher plans"> <i class="fas fa-lock"></i> Higher Plan Required </button> <?php else: ?> <a href="plan_payment.php?plan_id=<?php echo $plan['id']; ?>" class="btn btn-primary btn-block"> <i class="fas fa-shopping-cart"></i> Purchase Now </a> <?php endif; ?> </div> </div> <?php endforeach; ?> <?php endif; ?> </div> </div> <!-- My Plans --> <div class="card"> <div class="card-header"> <i class="fas fa-history"></i> My Plans History </div> <div class="card-body"> <?php if (empty($userPlans)): ?> <p style="color: var(--text-secondary); text-align: center;">You haven't purchased any plans yet.</p> <?php else: ?> <div class="table-responsive"> <table> <thead> <tr> <th>Plan</th> <th>Price</th> <th>Status</th> <th>Date</th> </tr> </thead> <tbody> <?php foreach ($userPlans as $userPlan): ?> <tr> <td> <strong><?php echo htmlspecialchars($userPlan['plan_name']); ?></strong> <br> <div style="font-size: 13px; color: var(--text-secondary);"> <?php if ($userPlan['plan_duration'] > 0): ?> Expiry: <?php echo date('M d, Y', strtotime($userPlan['end_date'])); ?> <?php else: ?> Validity: Lifetime <?php endif; ?> </div> <small style="color: var(--text-secondary);"> <?php echo $userPlan['ads_limit_per_day']; ?> ads/day </small> </td> <td> <?php echo getSetting('currency_symbol', '$'); ?> <?php echo number_format($userPlan['plan_price'], 3); ?> </td> <td> <?php switch ($userPlan['status']) { case 'active': echo '<span class="badge badge-success">Active</span>'; if ($userPlan['plan_duration'] > 0) { echo '<br><small style="color: var(--text-secondary);">Until ' . date('M d, Y', strtotime($userPlan['end_date'])) . '</small>'; } else { echo '<br><small style="color: var(--text-secondary);">Lifetime Access</small>'; } break; case 'pending': echo '<span class="badge badge-warning">Pending</span>'; break; case 'expired': echo '<span class="badge badge-danger">Expired</span>'; break; case 'rejected': echo '<span class="badge badge-danger">Rejected</span>'; break; } ?> </td> <td> <?php echo date('M d, Y', strtotime($userPlan['created_at'])); ?> </td> </tr> <?php endforeach; ?> </tbody> </table> </div> <?php endif; ?> </div> </div> <?php include 'footer.php'; ?>