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 /
new.ads /
user /
Delete
Unzip
Name
Size
Permission
Date
Action
steps
[ DIR ]
drwxr-xr-x
2025-11-13 19:19
.htaccess
197
B
-r--r--r--
2026-04-01 03:43
application.php
15.46
KB
-rw-r--r--
2025-11-13 19:26
dashboard.php
17.55
KB
-rw-r--r--
2025-11-13 20:04
new-application.php
10.31
KB
-rw-r--r--
2025-11-13 22:10
payment.php
13.31
KB
-rw-r--r--
2025-11-13 21:38
payments.php
16.12
KB
-rw-r--r--
2025-11-13 19:27
profile.php
14.19
KB
-rw-r--r--
2025-11-13 21:56
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 '../config.php'; require_once '../database.php'; require_once '../libs/functions.php'; requireLogin(); $user_id = $_SESSION['user_id']; // Get user's application $application = $db->fetch("SELECT * FROM applications WHERE user_id = ? AND status = 'approved'", [$user_id]); if (!$application) { setFlashMessage('error', 'No approved application found.'); redirect(SITE_URL . '/user/dashboard.php'); } // Check if already paid and activated if ($application['qr_activated']) { setFlashMessage('success', 'Your QR code is already activated.'); redirect(SITE_URL . '/user/dashboard.php'); } $error = ''; $success = ''; if ($_SERVER['REQUEST_METHOD'] === 'POST') { $payment_method = sanitize($_POST['payment_method'] ?? ''); $transaction_id = sanitize($_POST['transaction_id'] ?? ''); if (empty($payment_method) || empty($transaction_id)) { $error = 'All fields are required.'; } else { // Handle payment proof upload $paymentProof = ''; if (isset($_FILES['payment_proof']) && $_FILES['payment_proof']['error'] === 0) { $result = uploadFile($_FILES['payment_proof'], UPLOAD_PATH . 'documents/'); if ($result['success']) { $paymentProof = $result['filename']; } else { $error = 'Failed to upload payment proof: ' . $result['message']; } } if (empty($error)) { try { $amount = getVehiclePrice($application['vehicle_type'], $db); // Insert transaction record $db->query("INSERT INTO transactions (user_id, application_id, amount, payment_method, transaction_id, payment_proof) VALUES (?, ?, ?, ?, ?, ?)", [$user_id, $application['id'], $amount, $payment_method, $transaction_id, $paymentProof]); $success = 'Payment submitted successfully! Admin will verify and activate your QR code within 24 hours.'; // Send email notification (placeholder) // sendEmail($application['email'], 'Payment Submitted', 'Your payment has been submitted for verification.'); } catch (Exception $e) { $error = 'Failed to submit payment. Please try again.'; } } } } $vehiclePrice = getVehiclePrice($application['vehicle_type'], $db); ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Make Payment - <?php echo SITE_NAME; ?></title> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet"> <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet"> <link href="../assets/css/style.css" rel="stylesheet"> </head> <body> <!-- Navigation --> <nav class="navbar navbar-expand-lg navbar-light"> <div class="container"> <a class="navbar-brand" href="../index.php"> <i class="fas fa-car me-2"></i><?php echo SITE_NAME; ?> </a> <div class="navbar-nav ms-auto"> <a class="nav-link" href="dashboard.php"> <i class="fas fa-arrow-left me-1"></i>Back to Dashboard </a> </div> </div> </nav> <div class="container mt-4"> <div class="row justify-content-center"> <div class="col-lg-8"> <!-- Payment Header --> <div class="card border-0 shadow-lg mb-4"> <div class="card-header bg-success text-white text-center"> <h4 class="mb-0"> <i class="fas fa-credit-card me-2"></i>Make Payment </h4> </div> <div class="card-body p-4"> <div class="text-center mb-4"> <div class="display-4 text-success fw-bold">PKR <?php echo number_format($vehiclePrice); ?></div> <p class="text-muted">QR Code Registration Fee for <?php echo htmlspecialchars($application['vehicle_type']); ?></p> </div> <div class="row"> <div class="col-md-6"> <h6>Application Details:</h6> <ul class="list-unstyled"> <li><strong>Vehicle:</strong> <?php echo htmlspecialchars($application['vehicle_name']); ?></li> <li><strong>Registration:</strong> <?php echo htmlspecialchars($application['vehicle_number']); ?></li> <li><strong>Type:</strong> <?php echo htmlspecialchars($application['vehicle_type']); ?></li> </ul> </div> <div class="col-md-6"> <h6>Payment Benefits:</h6> <ul class="list-unstyled"> <li><i class="fas fa-check text-success me-2"></i>QR Code Activation</li> <li><i class="fas fa-check text-success me-2"></i>Public Profile Access</li> <li><i class="fas fa-check text-success me-2"></i>Verification Badge</li> </ul> </div> </div> </div> </div> <?php if ($error): ?> <div class="alert alert-danger"> <i class="fas fa-exclamation-circle me-2"></i><?php echo $error; ?> </div> <?php endif; ?> <?php if ($success): ?> <div class="alert alert-success"> <i class="fas fa-check-circle me-2"></i><?php echo $success; ?> <div class="mt-2"> <a href="dashboard.php" class="btn btn-success">Go to Dashboard</a> </div> </div> <?php else: ?> <!-- Payment Methods --> <div class="row mb-4"> <div class="col-md-6"> <div class="card border-0 shadow-sm"> <div class="card-header bg-warning text-dark"> <h6 class="mb-0"><i class="fas fa-mobile-alt me-2"></i>Easypaisa</h6> </div> <div class="card-body"> <div class="text-center"> <div class="h4 text-warning">03XX-XXXXXXX</div> <p class="text-muted">Send money to this number</p> <small class="text-muted"> 1. Open Easypaisa app<br> 2. Send Money<br> 3. Enter above number<br> 4. Amount: PKR <?php echo number_format($vehiclePrice); ?><br> 5. Note transaction ID </small> </div> </div> </div> </div> <div class="col-md-6"> <div class="card border-0 shadow-sm"> <div class="card-header bg-info text-white"> <h6 class="mb-0"><i class="fas fa-mobile-alt me-2"></i>JazzCash</h6> </div> <div class="card-body"> <div class="text-center"> <div class="h4 text-info">03XX-XXXXXXX</div> <p class="text-muted">Send money to this number</p> <small class="text-muted"> 1. Open JazzCash app<br> 2. Send Money<br> 3. Enter above number<br> 4. Amount: PKR <?php echo number_format($vehiclePrice); ?><br> 5. Note transaction ID </small> </div> </div> </div> </div> </div> <!-- Payment Form --> <div class="card border-0 shadow-sm"> <div class="card-header bg-primary text-white"> <h6 class="mb-0"><i class="fas fa-file-upload me-2"></i>Submit Payment Details</h6> </div> <div class="card-body"> <form method="POST" enctype="multipart/form-data" class="needs-validation" novalidate> <div class="row"> <div class="col-md-6 mb-3"> <label for="payment_method" class="form-label">Payment Method <span class="text-danger">*</span></label> <select class="form-select" id="payment_method" name="payment_method" required> <option value="">Select Payment Method</option> <option value="Easypaisa">Easypaisa</option> <option value="JazzCash">JazzCash</option> </select> <div class="invalid-feedback">Please select payment method.</div> </div> <div class="col-md-6 mb-3"> <label for="transaction_id" class="form-label">Transaction ID <span class="text-danger">*</span></label> <input type="text" class="form-control" id="transaction_id" name="transaction_id" placeholder="Enter transaction ID from SMS" required> <div class="invalid-feedback">Please enter transaction ID.</div> </div> </div> <div class="mb-3"> <label for="payment_proof" class="form-label">Payment Screenshot (Optional)</label> <div class="file-upload-wrapper"> <input type="file" class="file-upload-input" id="payment_proof" name="payment_proof" accept="image/*"> <label for="payment_proof" class="file-upload-label"> <i class="fas fa-cloud-upload-alt me-2"></i>Choose Screenshot </label> </div> <small class="text-muted">Upload screenshot of payment confirmation (optional but recommended)</small> </div> <div class="alert alert-info"> <h6><i class="fas fa-info-circle me-2"></i>Important Notes</h6> <ul class="mb-0"> <li>Make sure to send exactly PKR <?php echo number_format($vehiclePrice); ?></li> <li>Keep the transaction ID from SMS confirmation</li> <li>Admin will verify payment within 24 hours</li> <li>QR code will be activated after verification</li> <li>You will receive email notification once verified</li> </ul> </div> <div class="form-check mb-3"> <input class="form-check-input" type="checkbox" id="confirm_payment" required> <label class="form-check-label" for="confirm_payment"> I confirm that I have made the payment of PKR <?php echo number_format($vehiclePrice); ?> and the transaction details are correct. </label> </div> <div class="d-grid"> <button type="submit" class="btn btn-success btn-lg"> <i class="fas fa-paper-plane me-2"></i>Submit Payment Details </button> </div> </form> </div> </div> <?php endif; ?> </div> </div> </div> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script> <script src="../assets/js/main.js"></script> </body> </html>