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 /
.trash /
user.2 /
Delete
Unzip
Name
Size
Permission
Date
Action
activate_dpin.php
7.76
KB
-rw-r--r--
2025-10-18 22:14
ads.php
11.49
KB
-rw-r--r--
2025-10-18 22:44
commission.php
7.01
KB
-rw-r--r--
2025-10-18 21:56
dashboard.php
17.28
KB
-rw-r--r--
2025-10-18 22:49
deposit.php
6.03
KB
-rw-r--r--
2025-10-18 21:45
deposit_history.php
4.26
KB
-rw-r--r--
2025-10-18 21:55
dpin.php
7.2
KB
-rw-r--r--
2025-10-18 22:26
dpin_history.php
5.91
KB
-rw-r--r--
2025-10-18 22:15
invite.php
6.44
KB
-rw-r--r--
2025-10-18 21:43
logout.php
91
B
-rw-r--r--
2025-10-18 21:42
notifications.php
3.73
KB
-rw-r--r--
2025-10-18 21:47
plans.php
10.34
KB
-rw-r--r--
2025-10-18 22:43
profile.php
6.69
KB
-rw-r--r--
2025-10-18 21:43
purchase_plan.php
4.99
KB
-rw-r--r--
2025-10-18 21:46
sidebar.php
5.16
KB
-rw-r--r--
2025-10-18 22:15
team.php
6.81
KB
-rw-r--r--
2025-10-18 21:47
transactions.php
4.37
KB
-rw-r--r--
2025-10-18 21:47
withdraw.php
7.92
KB
-rw-r--r--
2025-10-18 21:56
withdraw_history.php
7.74
KB
-rw-r--r--
2025-10-18 21:56
Save
Rename
<?php require_once '../includes/header.php'; // Get all active plans $stmt = $conn->prepare("SELECT * FROM plans WHERE status = 'active' ORDER BY price ASC"); $stmt->execute(); $plans_result = $stmt->get_result(); $plans = []; while ($row = $plans_result->fetch_assoc()) { $plans[] = $row; } ?> <div class="container-fluid"> <div class="row"> <!-- Sidebar --> <?php include 'sidebar.php'; ?> <!-- Main Content --> <main class="col-md-9 ms-sm-auto col-lg-10 main-content"> <div class="d-flex justify-content-between flex-wrap flex-md-nowrap align-items-center pt-3 pb-2 mb-3 border-bottom"> <h1 class="h2">Membership Plans</h1> <div class="btn-toolbar mb-2 mb-md-0"> <!-- Mobile Menu --> <div class="mobile-menu-container"> <button class="mobile-menu-btn" id="mobileMenuBtn"> <i class="fas fa-bars"></i> Menu </button> <div class="mobile-dropdown-menu" id="mobileDropdownMenu"> <a href="dashboard.php"><i class="fas fa-home me-2"></i> Dashboard</a> <a href="deposit.php"><i class="fas fa-money-bill-wave me-2"></i> Deposit</a> <a href="deposit_history.php"><i class="fas fa-history me-2"></i> Deposit History</a> <a href="dpin.php"><i class="fas fa-key me-2"></i> D.Pin Request</a> <a href="activate_dpin.php"><i class="fas fa-key me-2"></i> Activate D.Pin</a> <a href="dpin_history.php"><i class="fas fa-list me-2"></i> D.Pin History</a> <a href="withdraw.php"><i class="fas fa-money-check-alt me-2"></i> Withdraw</a> <a href="withdraw_history.php"><i class="fas fa-history me-2"></i> Withdraw History</a> <a href="ads.php"><i class="fas fa-ad me-2"></i> Ads Management</a> <a href="transactions.php"><i class="fas fa-exchange-alt me-2"></i> All Transactions</a> <a href="profile.php"><i class="fas fa-user me-2"></i> Profile</a> <a href="invite.php"><i class="fas fa-user-friends me-2"></i> User Invite</a> <a href="team.php"><i class="fas fa-users me-2"></i> Team Users</a> <a href="commission.php"><i class="fas fa-percentage me-2"></i> Referral Commission</a> <a href="plans.php"><i class="fas fa-box me-2"></i> Membership Plans</a> <a href="notifications.php"><i class="fas fa-bell me-2"></i> Notifications</a> <a href="logout.php"><i class="fas fa-sign-out-alt me-2"></i> Logout</a> </div> </div> </div> </div> <div class="row"> <?php foreach ($plans as $plan): ?> <div class="col-md-4 mb-4"> <div class="card h-100"> <div class="card-header text-center"> <h4 class="mb-0"><?php echo htmlspecialchars($plan['name']); ?></h4> </div> <div class="card-body text-center"> <div class="price mb-3"> <h2 class="text-primary"><?php echo format_currency($plan['price']); ?></h2> <p class="text-muted">Per <?php echo $plan['duration']; ?> days</p> </div> <ul class="list-unstyled text-start"> <li class="mb-2"><i class="fas fa-check text-success me-2"></i>Daily Ads: <?php echo $plan['daily_ads']; ?></li> <li class="mb-2"><i class="fas fa-check text-success me-2"></i>Per Ad Earning: <?php echo format_currency($plan['per_ad_earning']); ?></li> <li class="mb-2"><i class="fas fa-check text-success me-2"></i>Duration: <?php echo $plan['duration']; ?> days</li> </ul> </div> <div class="card-footer text-center"> <?php if ($user['current_plan'] == $plan['id']): ?> <button class="btn btn-success w-100" disabled> <i class="fas fa-check me-1"></i>Current Plan </button> <?php else: ?> <button class="btn btn-primary w-100" data-bs-toggle="modal" data-bs-target="#purchaseModal<?php echo $plan['id']; ?>"> <i class="fas fa-shopping-cart me-1"></i>Purchase Plan </button> <?php endif; ?> </div> </div> </div> <!-- Purchase Modal --> <div class="modal fade" id="purchaseModal<?php echo $plan['id']; ?>" tabindex="-1" aria-labelledby="purchaseModalLabel<?php echo $plan['id']; ?>" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="purchaseModalLabel<?php echo $plan['id']; ?>">Purchase <?php echo htmlspecialchars($plan['name']); ?></h5> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"> <div class="text-center mb-4"> <h3><?php echo format_currency($plan['price']); ?></h3> <p>Balance: <?php echo format_currency($user['balance']); ?></p> </div> <?php if ($user['balance'] >= $plan['price']): ?> <form method="POST" action="purchase_plan.php"> <input type="hidden" name="plan_id" value="<?php echo $plan['id']; ?>"> <div class="mb-3"> <label class="form-label">Payment Method</label> <select class="form-select" name="payment_method" required> <option value="balance">Account Balance (<?php echo format_currency($user['balance']); ?>)</option> <option value="dpin">D.Pin</option> </select> </div> <div id="dpinField<?php echo $plan['id']; ?>" style="display: none;"> <div class="mb-3"> <label class="form-label">Enter D.Pin</label> <input type="text" class="form-control" name="dpin" placeholder="Enter your 15-digit D.Pin"> </div> </div> <button type="submit" class="btn btn-primary w-100">Confirm Purchase</button> </form> <?php else: ?> <div class="alert alert-warning"> Insufficient balance. Please deposit funds or use a D.Pin to purchase this plan. </div> <div class="d-grid gap-2"> <a href="deposit.php" class="btn btn-primary">Deposit Funds</a> <a href="dpin.php" class="btn btn-secondary">Get D.Pin</a> </div> <?php endif; ?> </div> </div> </div> </div> <?php endforeach; ?> </div> </main> </div> </div> <script> // Show/hide D.Pin field based on payment method selection document.addEventListener('DOMContentLoaded', function() { <?php foreach ($plans as $plan): ?> const paymentMethodSelect<?php echo $plan['id']; ?> = document.querySelector('#purchaseModal<?php echo $plan['id']; ?> select[name="payment_method"]'); if (paymentMethodSelect<?php echo $plan['id']; ?>) { paymentMethodSelect<?php echo $plan['id']; ?>.addEventListener('change', function() { const dpinField<?php echo $plan['id']; ?> = document.querySelector('#dpinField<?php echo $plan['id']; ?>'); if (this.value === 'dpin') { dpinField<?php echo $plan['id']; ?>.style.display = 'block'; } else { dpinField<?php echo $plan['id']; ?>.style.display = 'none'; } }); } <?php endforeach; ?> }); // Mobile Menu Toggle document.addEventListener('DOMContentLoaded', function() { const mobileMenuBtn = document.getElementById('mobileMenuBtn'); const mobileDropdownMenu = document.getElementById('mobileDropdownMenu'); if (mobileMenuBtn && mobileDropdownMenu) { mobileMenuBtn.addEventListener('click', function(e) { e.stopPropagation(); mobileDropdownMenu.classList.toggle('show'); }); // Close dropdown when clicking outside document.addEventListener('click', function(e) { if (!mobileMenuBtn.contains(e.target) && !mobileDropdownMenu.contains(e.target)) { mobileDropdownMenu.classList.remove('show'); } }); } }); </script> <?php require_once '../includes/footer.php'; ?> </body> </html>