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... // reply_issue.php if ($_SERVER['REQUEST_METHOD'] === 'POST') { $issueID = $_POST['issue_id']; $adminReply = $_POST['admin_reply']; // Update issue status and reply in the database $pdo = new PDO("mysql:host=localhost;dbname=sywzieht_777", "sywzieht_777", "sywzieht_777"); $stmt = $pdo->prepare("UPDATE issues SET admin_reply = :admin_reply, status = 'Replied' WHERE id = :id"); $stmt->bindParam(':admin_reply', $adminReply); $stmt->bindParam(':id', $issueID); $stmt->execute(); // Redirect back to the issue details page header("Location: view_issue.php?id=" . $issueID); } ?>