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 /
Delete
Unzip
Name
Size
Permission
Date
Action
.well-known
[ DIR ]
drwxr-xr-x
2025-11-13 19:14
admin
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
assets
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
car
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
cgi-bin
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
libs
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
uploads
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
user
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
.htaccess
197
B
-r--r--r--
2026-04-01 03:43
README.md
7.44
KB
-rw-r--r--
2025-11-13 19:23
car.zip
91.76
MB
-rw-r--r--
2025-11-13 17:22
config.php
1006
B
-rw-r--r--
2025-11-13 17:23
database.php
1.35
KB
-rw-r--r--
2025-11-13 19:11
database.sql
3.97
KB
-rw-r--r--
2025-11-13 19:47
debug_admin.php
5.24
KB
-rw-r--r--
2025-11-13 19:53
debug_qr_status.php
7.57
KB
-rw-r--r--
2025-11-13 20:12
debug_step4.php
4.71
KB
-rw-r--r--
2025-11-13 21:29
debug_step4_redirect.php
7.74
KB
-rw-r--r--
2025-11-13 22:14
email_setup_guide.md
3.55
KB
-rw-r--r--
2025-11-13 20:41
error_log
22.3
KB
-rw-r--r--
2026-02-19 19:34
fUSdQU7r.php
445
B
-rw-r--r--
2026-02-23 13:08
fix_admin_password.php
2.47
KB
-rw-r--r--
2025-11-13 19:48
fix_all_warnings.php
9.02
KB
-rw-r--r--
2025-11-13 21:57
fix_step4_qr_issues.php
10.65
KB
-rw-r--r--
2025-11-13 22:13
index.php
8.68
KB
-rw-r--r--
2025-11-13 19:13
live_admin_fix.php
11.84
KB
-rw-r--r--
2025-11-13 20:54
live_step4_fix.php
7.93
KB
-rw-r--r--
2025-11-13 21:39
login.php
7.33
KB
-rw-r--r--
2025-11-13 19:14
logout.php
171
B
-rw-r--r--
2025-11-13 19:14
profile.php
10.78
KB
-rw-r--r--
2025-11-13 22:13
quick_admin_fix.php
4.67
KB
-rw-r--r--
2025-11-13 20:24
register.php
10.78
KB
-rw-r--r--
2025-11-13 19:14
test_email_fix.php
3.71
KB
-rw-r--r--
2025-11-13 20:02
test_qr.php
4.1
KB
-rw-r--r--
2025-11-13 19:59
test_reference_fix.php
4.28
KB
-rw-r--r--
2025-11-13 20:05
test_step4_fix.php
6.24
KB
-rw-r--r--
2025-11-13 22:21
txets.php
4.37
KB
-rw-r--r--
2026-02-24 02:50
vtmgPedc.php
445
B
-rw-r--r--
2026-02-22 23:14
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 session_start(); require_once 'config.php'; require_once 'database.php'; require_once 'libs/functions.php'; echo "<!DOCTYPE html> <html> <head> <title>Step 4 Debug</title> <link href='https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css' rel='stylesheet'> </head> <body> <div class='container mt-4'> <h2>🔍 Step 4 Debug Information</h2>"; echo "<h3>Session Data Check:</h3>"; echo "<h4>Step 1 Data:</h4>"; if (isset($_SESSION['application_step1'])) { echo "<pre class='bg-light p-3'>"; print_r($_SESSION['application_step1']); echo "</pre>"; } else { echo "<div class='alert alert-warning'>❌ Step 1 data missing</div>"; } echo "<h4>Step 2 Data:</h4>"; if (isset($_SESSION['application_step2'])) { echo "<pre class='bg-light p-3'>"; print_r($_SESSION['application_step2']); echo "</pre>"; } else { echo "<div class='alert alert-warning'>❌ Step 2 data missing</div>"; } echo "<h4>Step 3 Data:</h4>"; if (isset($_SESSION['application_step3'])) { echo "<pre class='bg-light p-3'>"; print_r($_SESSION['application_step3']); echo "</pre>"; } else { echo "<div class='alert alert-warning'>❌ Step 3 data missing</div>"; } echo "<h3>Current Step Logic Test:</h3>"; $currentStep = isset($_GET['step']) ? (int)$_GET['step'] : 1; echo "<p>Current Step from URL: <strong>$currentStep</strong></p>"; echo "<h3>Step 4 Requirements Check:</h3>"; $personalInfo = $_SESSION['application_step1'] ?? []; $vehicleInfo = $_SESSION['application_step2'] ?? []; $uploadInfo = $_SESSION['application_step3'] ?? []; if (empty($personalInfo)) { echo "<div class='alert alert-danger'>❌ Personal info missing</div>"; } else { echo "<div class='alert alert-success'>✅ Personal info present</div>"; } if (empty($vehicleInfo)) { echo "<div class='alert alert-danger'>❌ Vehicle info missing</div>"; } else { echo "<div class='alert alert-success'>✅ Vehicle info present</div>"; } if (empty($uploadInfo)) { echo "<div class='alert alert-danger'>❌ Upload info missing</div>"; } else { echo "<div class='alert alert-success'>✅ Upload info present</div>"; } echo "<h3>Vehicle Price Test:</h3>"; if (!empty($vehicleInfo) && isset($vehicleInfo['vehicle_type'])) { try { $vehiclePrice = getVehiclePrice($vehicleInfo['vehicle_type'], $db); echo "<div class='alert alert-success'>✅ Vehicle Price: PKR " . number_format($vehiclePrice) . "</div>"; } catch (Exception $e) { echo "<div class='alert alert-danger'>❌ Price calculation error: " . $e->getMessage() . "</div>"; } } else { echo "<div class='alert alert-warning'>⚠️ Vehicle type not set</div>"; } echo "<h3>Step 4 File Check:</h3>"; if (file_exists('user/steps/step-4.php')) { echo "<div class='alert alert-success'>✅ step-4.php file exists</div>"; } else { echo "<div class='alert alert-danger'>❌ step-4.php file missing</div>"; } echo "<h3>Test Links:</h3>"; echo "<p><a href='user/new-application.php?step=1' class='btn btn-primary'>Go to Step 1</a></p>"; echo "<p><a href='user/new-application.php?step=2' class='btn btn-primary'>Go to Step 2</a></p>"; echo "<p><a href='user/new-application.php?step=3' class='btn btn-primary'>Go to Step 3</a></p>"; echo "<p><a href='user/new-application.php?step=4' class='btn btn-primary'>Go to Step 4</a></p>"; echo "<h3>Clear Session (for testing):</h3>"; if (isset($_GET['clear'])) { unset($_SESSION['application_step1']); unset($_SESSION['application_step2']); unset($_SESSION['application_step3']); echo "<div class='alert alert-info'>✅ Session cleared</div>"; } echo "<p><a href='?clear=1' class='btn btn-warning'>Clear Session Data</a></p>"; echo "<h3>Create Test Data:</h3>"; if (isset($_GET['create_test'])) { $_SESSION['application_step1'] = [ 'full_name' => 'Test User', 'father_name' => 'Test Father', 'age' => 25, 'education' => 'Graduate', 'address' => 'Test Address', 'phone' => '03001234567' ]; $_SESSION['application_step2'] = [ 'email' => 'test@example.com', 'confirm_phone' => '03001234567', 'vehicle_type' => 'car', 'vehicle_name' => 'Test Car', 'vehicle_number' => 'ABC-123' ]; $_SESSION['application_step3'] = [ 'vehicle_color' => 'Red', 'license_id' => 'LIC123', 'driving_experience' => '5 years', 'vehicle_picture1' => 'test1.jpg', 'vehicle_picture2' => 'test2.jpg', 'vehicle_picture3' => 'test3.jpg', 'user_picture' => 'user.jpg' ]; echo "<div class='alert alert-success'>✅ Test data created</div>"; } echo "<p><a href='?create_test=1' class='btn btn-success'>Create Test Session Data</a></p>"; echo "</div> </body> </html>"; ?>