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 // TEST QR CODE GENERATION require_once 'config.php'; require_once 'database.php'; require_once 'libs/functions.php'; require_once 'libs/qrcode.php'; echo "<h2>๐งช QR Code Generation Test</h2>"; echo "<hr>"; try { // Test data $testData = SITE_URL . '/profile.php?id=1'; $testFilename = 'test_qr_' . time() . '.png'; echo "<p><strong>Test Data:</strong> $testData</p>"; echo "<p><strong>Test Filename:</strong> $testFilename</p>"; // Create QR directory if it doesn't exist if (!is_dir(QR_PATH)) { mkdir(QR_PATH, 0755, true); echo "<p>โ Created QR directory: " . QR_PATH . "</p>"; } else { echo "<p>โ QR directory exists: " . QR_PATH . "</p>"; } // Test QR generation echo "<h3>Testing QR Code Generation...</h3>"; $result = QRCodeGenerator::generate($testData, $testFilename); if ($result) { echo "<div style='color: green; padding: 10px; border: 1px solid green; background: #f0fff0;'>"; echo "<strong>โ SUCCESS!</strong> QR code generated successfully!<br>"; echo "<strong>Filename:</strong> $result<br>"; echo "<strong>File Path:</strong> " . QR_PATH . $result . "<br>"; if (file_exists(QR_PATH . $result)) { $fileSize = filesize(QR_PATH . $result); echo "<strong>File Size:</strong> " . number_format($fileSize) . " bytes<br>"; // Display the QR code echo "<br><strong>Generated QR Code:</strong><br>"; echo "<img src='uploads/qr/$result' alt='Test QR Code' style='border: 1px solid #ccc; padding: 10px; background: white;'>"; // Add download link echo "<br><br><a href='uploads/qr/$result' download='$result' class='btn btn-success'>Download QR Code</a>"; } else { echo "<br><strong>โ ๏ธ Warning:</strong> File was not saved properly."; } echo "</div>"; } else { echo "<div style='color: red; padding: 10px; border: 1px solid red; background: #fff0f0;'>"; echo "<strong>โ FAILED!</strong> QR code generation failed."; echo "</div>"; } } catch (Exception $e) { echo "<div style='color: red; padding: 10px; border: 1px solid red; background: #fff0f0;'>"; echo "<strong>โ ERROR:</strong> " . $e->getMessage(); echo "</div>"; } echo "<hr>"; echo "<h3>๐ง QR Code APIs Test</h3>"; // Test individual APIs $testApis = [ 'QR Server API' => 'https://api.qrserver.com/v1/create-qr-code/?size=200x200&data=' . urlencode($testData), 'Google Charts API' => 'https://chart.googleapis.com/chart?chs=200x200&cht=qr&chl=' . urlencode($testData) ]; foreach ($testApis as $name => $url) { echo "<h4>$name</h4>"; echo "<p><strong>URL:</strong> <a href='$url' target='_blank'>$url</a></p>"; $context = stream_context_create([ 'http' => [ 'timeout' => 10, 'user_agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36' ] ]); $imageData = @file_get_contents($url, false, $context); if ($imageData !== false && strlen($imageData) > 100) { echo "<p style='color: green;'>โ <strong>Working</strong> - Response size: " . number_format(strlen($imageData)) . " bytes</p>"; echo "<img src='$url' alt='$name QR Code' style='border: 1px solid #ccc; max-width: 200px;'><br><br>"; } else { echo "<p style='color: red;'>โ <strong>Failed</strong> - API not responding</p>"; } } echo "<hr>"; echo "<p><a href='admin/applications.php'>๐ Go to Admin Applications</a></p>"; echo "<p><a href='index.php'>๐ Back to Homepage</a></p>"; echo "<p style='color: red; margin-top: 30px;'><strong>โ ๏ธ SECURITY:</strong> Delete this test file after use!</p>"; ?> <style> body { font-family: Arial, sans-serif; margin: 40px; line-height: 1.6; } h3, h4 { color: #333; border-bottom: 2px solid #28a745; padding-bottom: 5px; } .btn { background: #28a745; color: white; padding: 8px 16px; text-decoration: none; border-radius: 4px; display: inline-block; margin: 5px; } .btn:hover { background: #218838; } </style>