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 /
data sycho /
Delete
Unzip
Name
Size
Permission
Date
Action
admin
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
assets
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
auth
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
includes
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
layouts
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
uploads
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
.htaccess
197
B
-r--r--r--
2026-04-01 03:43
404.php
2.81
KB
-rw-r--r--
2026-03-01 20:29
PRD.md
10.42
KB
-rw-r--r--
2026-03-01 20:12
contact.php
8.52
KB
-rw-r--r--
2026-03-01 23:42
dashboard.php
27.37
KB
-rw-r--r--
2026-03-01 20:23
database.sql
3.35
KB
-rw-r--r--
2026-03-01 20:13
error_log
6.87
KB
-rw-r--r--
2026-03-01 20:23
index.php
11.9
KB
-rw-r--r--
2026-03-16 18:50
me.zip
14.2
MB
-rw-r--r--
2026-03-01 20:08
payment.php
9.09
KB
-rw-r--r--
2026-03-01 23:13
process_order.php
2.36
KB
-rw-r--r--
2026-03-01 21:23
purchase.php
6.51
KB
-rw-r--r--
2026-03-01 23:14
services.php
5.29
KB
-rw-r--r--
2026-03-01 23:40
wp-blog-header.php
2.74
KB
-rw-r--r--
2026-04-01 03:43
wp-cron.php
2.74
KB
-rw-r--r--
2026-04-01 03:43
Save
Rename
<?php include 'includes/db.php'; session_start(); // Auth check if (!isset($_SESSION['user_id'])) { header('Location: auth/login.php'); exit; } $user_id = $_SESSION['user_id']; $order_id = $_GET['order_id'] ?? null; if (!$order_id) { header('Location: dashboard.php'); exit; } // Fetch Order $stmt = $pdo->prepare(" SELECT o.*, s.name as service_name, s.price as service_price FROM orders o JOIN services s ON o.service_id = s.id WHERE o.id = ? AND o.user_id = ? "); $stmt->execute([$order_id, $user_id]); $order = $stmt->fetch(); if (!$order) { header('Location: dashboard.php'); exit; } // Redirect if already paid if ($order['payment_status'] == 'Paid' || $order['payment_status'] == 'Pending Approval') { header('Location: dashboard.php?tab=orders'); exit; } $success_msg = ""; $error_msg = ""; // Handle Payment Submission if (isset($_POST['submit_payment_notification'])) { // Screenshot Upload handling $screenshot_path = null; if (isset($_FILES['payment_screenshot']) && $_FILES['payment_screenshot']['error'] == 0) { $upload_dir = 'uploads/payments/'; if (!is_dir($upload_dir)) mkdir($upload_dir, 0777, true); $filename = "PAY_PROOF_" . $order_id . "_" . time() . "_" . basename($_FILES['payment_screenshot']['name']); $target_file = $upload_dir . $filename; if (move_uploaded_file($_FILES['payment_screenshot']['tmp_name'], $target_file)) { $screenshot_path = $filename; } } if ($screenshot_path) { $stmt = $pdo->prepare("UPDATE orders SET payment_status = 'Pending Approval', payment_screenshot = ? WHERE id = ? AND user_id = ?"); $stmt->execute([$screenshot_path, $order_id, $user_id]); $success_msg = "Payment request submitted. Proof has been uploaded for administrative verification."; header('Location: dashboard.php?tab=orders&msg_success=Payment submitted.'); exit; } else { $error_msg = "Payment submission failed. Proof of payment is required."; } } $payment_methods = $pdo->query("SELECT * FROM admin_payment_methods WHERE is_active = 1")->fetchAll(); include 'layouts/header.php'; ?> <main style="padding-top: 120px; padding-bottom: 80px; background: #fafafa; min-height: 100vh;"> <div class="container"> <div style="max-width: 1000px; margin: 0 auto;"> <div style="margin-bottom: 3.5rem;"> <span style="font-size: 0.75rem; font-weight: 800; color: var(--primary); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 0.5rem; display: block;">Settlement Floor</span> <h1 style="font-size: 2.2rem; font-weight: 800; margin-bottom: 0.8rem; letter-spacing: -1px; color: var(--text-main);">Process Commitment</h1> <p style="color: var(--text-dim); font-size: 1rem; font-weight: 500;">Securely transfer funds to initialize your developmental roadmap.</p> </div> <div class="dashboard-grid" style="display: grid; grid-template-columns: 1fr 350px; gap: 3rem; align-items: start;"> <!-- Methods and Payment Form --> <div> <h3 style="font-weight: 800; font-size: 1.2rem; margin-bottom: 2rem; color: var(--text-main); display: flex; align-items: center; gap: 0.8rem;"><i class="fas fa-university" style="color: var(--primary);"></i> Available Gateways</h3> <div style="margin-bottom: 3rem;"> <?php foreach ($payment_methods as $pm): ?> <div class="card admin-card" style="margin-bottom: 1.5rem; display: flex; gap: 1.5rem; align-items: flex-start; background: #fff;"> <?php if (isset($pm['method_file']) && $pm['method_file']): ?> <img src="uploads/payment_methods/<?php echo htmlspecialchars($pm['method_file']); ?>" style="width: 60px; height: 60px; border-radius: 12px; object-fit: cover; flex-shrink: 0;"> <?php endif; ?> <div style="flex-grow: 1;"> <h4 style="margin-bottom: 0.5rem; font-weight: 800; color: #0f172a; font-size: 1.1rem;"><?php echo htmlspecialchars($pm['method_name']); ?></h4> <pre style="font-family: inherit; font-size: 0.95rem; font-weight: 600; color: #475569; white-space: pre-wrap; margin-bottom: 1rem; background: #f8fafc; padding: 1rem; border-radius: 10px; border: 1px solid #f1f5f9;"><?php echo htmlspecialchars($pm['account_details']); ?></pre> <p style="font-size: 0.75rem; color: var(--primary); font-weight: 800; text-transform: uppercase; letter-spacing: 1px;"><i class="fas fa-info-circle"></i> <?php echo htmlspecialchars($pm['instructions']); ?></p> </div> </div> <?php endforeach; ?> </div> <div class="card admin-card" style="background: #ffffff; border: 2px solid #f1f5f9;"> <h3 style="font-weight: 800; font-size: 1.2rem; margin-bottom: 1.5rem; color: var(--text-main);">Evidence of Settlement</h3> <form action="" method="POST" enctype="multipart/form-data"> <div class="form-group" style="margin-bottom: 2rem;"> <label style="display: block; margin-bottom: 0.8rem; font-size: 0.8rem; font-weight: 800; color: #475569; text-transform: uppercase; letter-spacing: 1px;">Transaction Proof (Receipt/Screenshot)</label> <div style="position: relative; width: 100%;"> <input type="file" name="payment_screenshot" required style="width: 100%; border: 2px dashed #e2e8f0; padding: 3rem 2rem; border-radius: 20px; background: #f8fafc; cursor: pointer; text-align: center; font-weight: 600; font-size: 0.9rem;"> <div style="position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; color: #94a3b8; text-align: center;"> <i class="fas fa-cloud-upload-alt" style="font-size: 2rem; margin-bottom: 0.5rem; display: block;"></i> Click to select or drag file </div> </div> </div> <button type="submit" name="submit_payment_notification" class="btn-primary" style="width: 100%; padding: 1.2rem; font-size: 1rem; border-radius: 15px; font-weight: 800; box-shadow: 0 10px 20px var(--primary-glow);">Submit for Verification</button> </form> </div> </div> <!-- Order Summary --> <aside style="position: sticky; top: 120px;"> <div class="card admin-card" style="background: #ffffff; text-align: left; border: 1px solid rgba(0,0,0,0.05);"> <h4 style="font-weight: 800; font-size: 0.9rem; margin-bottom: 1.5rem; color: #94a3b8; text-transform: uppercase; letter-spacing: 1.5px;">Order Summary</h4> <div style="margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid #f1f5f9;"> <div style="font-weight: 800; font-size: 1.2rem; margin-bottom: 0.3rem; color: var(--text-main);"><?php echo htmlspecialchars($order['service_name']); ?></div> <div style="color: var(--primary); font-weight: 800; font-size: 0.85rem;">Token ID: #CS-<?php echo str_pad($order['id'], 4, '0', STR_PAD_LEFT); ?></div> </div> <div style="display: flex; justify-content: space-between; align-items: center; margin-bottom: 3rem;"> <div style="font-weight: 700; color: #64748b; font-size: 0.9rem;">Settlement Total</div> <div style="font-weight: 900; font-size: 1.6rem; color: var(--primary);">$<?php echo number_format($order['service_price'], 2); ?></div> </div> <div style="background: var(--primary-light); padding: 1.5rem; border-radius: 18px; font-size: 0.8rem; color: #166534; font-weight: 700; line-height: 1.6;"> <i class="fas fa-shield-alt" style="margin-right: 0.6rem;"></i> Operations will commence on the <span style="font-weight: 900; color: var(--primary);">Analysis Phase</span> instantly after verification. </div> </div> </aside> </div> </div> </div> </main> <style> input[type="file"]::-webkit-file-upload-button { visibility: hidden; } input[type="file"]::before { content: ''; display: none; } </style> <?php include 'layouts/footer.php'; ?>