Linux moon.hostseba.com 4.18.0-553.51.1.lve.el8.x86_64 #1 SMP Tue May 6 15:14:12 UTC 2025 x86_64
LiteSpeed
Server IP : 103.174.152.68 & Your IP : 216.73.216.6
Domains :
Cant Read [ /etc/named.conf ]
User : julaysp1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
julaysp1 /
public_html /
admin /
order /
list /
Delete
Unzip
Name
Size
Permission
Date
Action
.htaccess
237
B
-r-xr-xr-x
2025-09-01 07:26
error_log
8.31
MB
-rw-r--r--
2025-08-29 06:29
fetch_data_for_bio.php
611
B
-rw-r--r--
2024-10-25 15:16
fetch_pending_file_bio.php
911
B
-rw-r--r--
2024-10-31 14:22
fetch_total_order_summery.php
4.38
KB
-rw-r--r--
2025-05-29 16:41
fetch_total_succes_order.php
2.68
KB
-rw-r--r--
2024-11-15 09:54
fetch_total_summery.php
2.34
KB
-rw-r--r--
2024-11-15 13:11
fetch_user_data.php
558
B
-rw-r--r--
2024-11-15 14:50
file_order_cancel.php
666
B
-rw-r--r--
2024-10-27 18:28
file_order_completed.php
666
B
-rw-r--r--
2024-10-28 08:59
file_order_pending.php
784
B
-rw-r--r--
2024-11-15 18:22
list_of_bio_order.php
1.31
KB
-rw-r--r--
2024-11-15 17:43
list_order_cancel.php
665
B
-rw-r--r--
2024-10-26 15:38
list_order_completed.php
708
B
-rw-r--r--
2024-10-28 08:58
nid_order_pending.php
770
B
-rw-r--r--
2024-11-15 18:40
sign_order_pending.php
772
B
-rw-r--r--
2024-11-15 18:41
Save
Rename
<?php include_once("../../includes/configuration.php"); // Prepare the SQL queries to count pending orders $sql_bio_count = "SELECT COUNT(*) AS count FROM order_list WHERE user_type = 'bio' AND status = 'pending'"; $sql_file_count = "SELECT COUNT(*) AS count FROM order_list WHERE user_type = 'file' AND status = 'pending'"; $result_bio_count = $conn->query($sql_bio_count); $result_file_count = $conn->query($sql_file_count); $counts = [ 'bio' => 0, 'file' => 0 ]; // Fetch bio count if ($result_bio_count->num_rows > 0) { $row = $result_bio_count->fetch_assoc(); $counts['bio'] = (int)$row['count']; } // Fetch file count if ($result_file_count->num_rows > 0) { $row = $result_file_count->fetch_assoc(); $counts['file'] = (int)$row['count']; } // Close connection $conn->close(); // Return results as JSON header('Content-Type: application/json'); echo json_encode($counts); ?>