Linux spg1.cloudpowerdns.com 5.14.0-611.34.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 18 05:51:10 EST 2026 x86_64
LiteSpeed
Server IP : 176.9.63.151 & Your IP : 216.73.217.60
Domains :
Cant Read [ /etc/named.conf ]
User : fastear1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
softaculous /
presta /
Delete
Unzip
Name
Size
Permission
Date
Action
images
[ DIR ]
drwxr-xr-x
2026-02-27 06:46
php53
[ DIR ]
drwxr-xr-x
2026-02-27 06:46
php56
[ DIR ]
drwxr-xr-x
2026-02-27 06:46
php71
[ DIR ]
drwxr-xr-x
2026-02-27 06:46
php81
[ DIR ]
drwxr-xr-x
2026-02-27 06:46
php82
[ DIR ]
drwxr-xr-x
2026-02-27 06:46
changelog.txt
1.43
KB
-rwxr-xr-x
2021-12-23 05:54
clone.php
7.96
KB
-rwxr-xr-x
2024-05-02 06:26
edit.php
4.42
KB
-rwxr-xr-x
2024-05-02 06:26
edit.xml
447
B
-rwxr-xr-x
2023-07-17 08:16
fileindex.php
260
B
-rwxr-xr-x
2021-12-23 05:54
import.php
5.48
KB
-rwxr-xr-x
2024-05-02 06:26
info.xml
4.38
KB
-rwxr-xr-x
2024-05-02 04:25
install.js
1.12
KB
-rwxr-xr-x
2021-12-23 05:54
install.php
12.3
KB
-rwxr-xr-x
2024-05-02 06:26
install.xml
1.39
KB
-rwxr-xr-x
2021-12-23 05:54
md5
5.46
KB
-rwxr-xr-x
2024-05-02 06:26
notes.txt
1.27
KB
-rwxr-xr-x
2023-08-22 23:48
settings.inc.php
514
B
-rwxr-xr-x
2021-12-23 05:54
update_rijndael.php
916
B
-rwxr-xr-x
2021-12-23 05:54
upgrade.php
10.17
KB
-rwxr-xr-x
2024-05-02 06:26
upgrade.xml
1.28
KB
-rwxr-xr-x
2021-12-23 05: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(){ //Check the Admin Folder if($('admin_folder').value == 'admin'){ alert('{{err_admin_folder}}'); return false; } //Check the Admin pass if($('admin_pass').value.length < 8){ alert('{{err_pass}}'); return false; } //Check the Admin Email if(window.check_punycode){ if(!check_punycode($('admin_email').value)){ alert('{{err_ademail}}'); return false; } return true; } return true; };