Linux premium71.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
LiteSpeed
Server IP : 198.187.29.8 & Your IP : 18.116.27.229
Domains :
Cant Read [ /etc/named.conf ]
User : cleahvkv
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
php70 /
usr /
include /
php /
main /
Delete
Unzip
Name
Size
Permission
Date
Action
streams
[ DIR ]
drwxr-xr-x
2025-03-27 10:33
SAPI.h
9.43
KB
-rw-r--r--
2025-02-25 22:25
build-defs.h
8.26
KB
-rw-r--r--
2025-02-25 22:25
fastcgi.h
4.99
KB
-rw-r--r--
2025-02-25 22:25
fopen_wrappers.h
2.65
KB
-rw-r--r--
2025-02-25 22:25
http_status_codes.h
2.99
KB
-rw-r--r--
2025-02-25 22:25
php.h
11.31
KB
-rw-r--r--
2025-02-25 22:25
php_compat.h
17.61
KB
-rw-r--r--
2025-02-25 22:25
php_config.h
56.76
KB
-rw-r--r--
2025-02-25 22:25
php_content_types.h
1.46
KB
-rw-r--r--
2025-02-25 22:25
php_getopt.h
2.02
KB
-rw-r--r--
2025-02-25 22:25
php_globals.h
4.11
KB
-rw-r--r--
2025-02-25 22:25
php_ini.h
3.68
KB
-rw-r--r--
2025-02-25 22:25
php_main.h
2.52
KB
-rw-r--r--
2025-02-25 22:25
php_memory_streams.h
3.38
KB
-rw-r--r--
2025-02-25 22:25
php_network.h
10
KB
-rw-r--r--
2025-02-25 22:25
php_open_temporary_file.h
1.64
KB
-rw-r--r--
2025-02-25 22:25
php_output.h
9.56
KB
-rw-r--r--
2025-02-25 22:25
php_reentrancy.h
3.6
KB
-rw-r--r--
2025-02-25 22:25
php_scandir.h
1.88
KB
-rw-r--r--
2025-02-25 22:25
php_stdint.h
5.21
KB
-rw-r--r--
2025-02-25 22:25
php_streams.h
28.63
KB
-rw-r--r--
2025-02-25 22:25
php_syslog.h
1.54
KB
-rw-r--r--
2025-02-25 22:25
php_ticks.h
1.55
KB
-rw-r--r--
2025-02-25 22:25
php_variables.h
2.02
KB
-rw-r--r--
2025-02-25 22:25
php_version.h
266
B
-rw-r--r--
2025-02-25 22:25
rfc1867.h
3.3
KB
-rw-r--r--
2025-02-25 22:25
snprintf.h
6.88
KB
-rw-r--r--
2025-02-25 22:25
spprintf.h
2.25
KB
-rw-r--r--
2025-02-25 22:25
win95nt.h
2.58
KB
-rw-r--r--
2025-02-25 22:25
Save
Rename
/* +----------------------------------------------------------------------+ | PHP Version 7 | +----------------------------------------------------------------------+ | Copyright (c) 1997-2017 The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | http://www.php.net/license/3_01.txt | | If you did not receive a copy of the PHP license and are unable to | | obtain it through the world-wide-web, please send a note to | | license@php.net so we can mail you a copy immediately. | +----------------------------------------------------------------------+ | Author: Andrea Faulds <ajf@ajf.me> | +----------------------------------------------------------------------+ */ /* $Id: $ */ #ifndef HTTP_STATUS_CODES_H #define HTTP_STATUS_CODES_H typedef struct _http_response_status_code_pair { const int code; const char *str; } http_response_status_code_pair; static http_response_status_code_pair http_status_map[] = { { 100, "Continue" }, { 101, "Switching Protocols" }, { 200, "OK" }, { 201, "Created" }, { 202, "Accepted" }, { 203, "Non-Authoritative Information" }, { 204, "No Content" }, { 205, "Reset Content" }, { 206, "Partial Content" }, { 300, "Multiple Choices" }, { 301, "Moved Permanently" }, { 302, "Found" }, { 303, "See Other" }, { 304, "Not Modified" }, { 305, "Use Proxy" }, { 307, "Temporary Redirect" }, { 308, "Permanent Redirect" }, { 400, "Bad Request" }, { 401, "Unauthorized" }, { 402, "Payment Required" }, { 403, "Forbidden" }, { 404, "Not Found" }, { 405, "Method Not Allowed" }, { 406, "Not Acceptable" }, { 407, "Proxy Authentication Required" }, { 408, "Request Timeout" }, { 409, "Conflict" }, { 410, "Gone" }, { 411, "Length Required" }, { 412, "Precondition Failed" }, { 413, "Request Entity Too Large" }, { 414, "Request-URI Too Long" }, { 415, "Unsupported Media Type" }, { 416, "Requested Range Not Satisfiable" }, { 417, "Expectation Failed" }, { 426, "Upgrade Required" }, { 428, "Precondition Required" }, { 429, "Too Many Requests" }, { 431, "Request Header Fields Too Large" }, { 451, "Unavailable For Legal Reasons"}, { 500, "Internal Server Error" }, { 501, "Not Implemented" }, { 502, "Bad Gateway" }, { 503, "Service Unavailable" }, { 504, "Gateway Timeout" }, { 505, "HTTP Version Not Supported" }, { 506, "Variant Also Negotiates" }, { 511, "Network Authentication Required" }, /* to allow search with while() loop */ { 0, NULL } }; static const size_t http_status_map_len = (sizeof(http_status_map) / sizeof(http_response_status_code_pair)) - 1; #endif /* HTTP_STATUS_CODES_H */