Linux evo.fastest-server.com 5.14.0-284.1101.el9.tuxcare.11.els11.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Aug 14 13:30:35 UTC 2026 x86_64
LiteSpeed
Server IP : 103.249.112.113 & Your IP : 216.73.217.135
Domains : 988 Domain
User : tanishks
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
softaculous /
tcexam /
Delete
Unzip
Name
Size
Permission
Date
Action
images
[ DIR ]
drwxr-xr-x
2026-09-23 11:56
php53
[ DIR ]
drwxr-xr-x
2026-09-23 11:56
php56
[ DIR ]
drwxr-xr-x
2026-09-23 11:56
php71
[ DIR ]
drwxr-xr-x
2026-09-23 11:56
php81
[ DIR ]
drwxr-xr-x
2026-09-23 11:56
php82
[ DIR ]
drwxr-xr-x
2026-09-23 11:56
upgrade
[ DIR ]
drwxr-xr-x
2026-09-23 11:56
changelog.txt
2.65
KB
-rw-r--r--
2026-06-30 02:51
check_utf8.php
1.07
KB
-rw-r--r--
2026-06-30 02:51
clone.php
5.45
KB
-rw-r--r--
2026-09-22 08:23
edit.php
4.96
KB
-rw-r--r--
2026-09-22 08:23
edit.xml
433
B
-rw-r--r--
2021-12-23 06:54
extend.php
11.32
KB
-rw-r--r--
2026-09-22 08:23
fileindex.php
644
B
-rw-r--r--
2026-06-30 02:51
import.php
3.33
KB
-rw-r--r--
2026-09-22 08:23
info.xml
2.48
KB
-rw-r--r--
2026-09-22 07:55
install.js
921
B
-rw-r--r--
2021-12-23 06:54
install.php
6.91
KB
-rw-r--r--
2026-09-22 08:23
install.xml
750
B
-rw-r--r--
2021-12-23 06:54
md5
4.37
KB
-rw-r--r--
2026-09-22 08:23
notes.txt
1.45
KB
-rw-r--r--
2026-07-14 08:15
tce_config.php
5.94
KB
-rw-r--r--
2026-06-30 02:51
tce_config_.php
7.36
KB
-rw-r--r--
2026-07-14 08:15
tce_db_config.php
4.12
KB
-rw-r--r--
2026-06-30 02:51
tce_general_constants.php
2.46
KB
-rw-r--r--
2026-06-30 02:51
tce_paths.php
4.72
KB
-rw-r--r--
2026-06-30 02:51
update_pass.php
298
B
-rw-r--r--
2021-12-23 06:54
upgrade.php
5.31
KB
-rw-r--r--
2026-09-22 08:23
upgrade.xml
381
B
-rw-r--r--
2026-06-30 02:51
Save
Rename
<?php /** * Does the database server claim to have support for UTF-8 Multibyte (utf8mb4) collation? * * libmysql supports utf8mb4 since 5.5.3 (same version as the MySQL server). mysqlnd supports utf8mb4 since 5.0.9. * * @return boolean * * @since CMS 3.5.0 */ function serverClaimsUtf8mb4Support() { $client_version = mysqli_get_client_info(); if (strpos($client_version, 'mysqlnd') !== false) { $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', '>='); } } /** * Get the version of the database connector. * * @return string The database connector version. * * @since 12.1 */ function getVersion() { $con = mysqli_connect("[[softdbhost]]","[[softdbuser]]","[[softdbpass]]","[[softdb]]"); return mysqli_get_server_info($con); } $serverClaimsUtf8mb4Support = serverClaimsUtf8mb4Support(); if(!empty($serverClaimsUtf8mb4Support)){ echo '<claim_utf8>utf8mb4</claim_utf8>'; } ?>