Linux worldls-302.fr.planethoster.net 4.18.0-553.8.1.lve.el7h.x86_64 #1 SMP Thu Jul 4 15:19:33 UTC 2024 x86_64
LiteSpeed
Server IP : 10.185.0.203 & Your IP : 216.73.216.32
Domains :
Cant Read [ /etc/named.conf ]
User : gerathty
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
softaculous /
presta8 /
Delete
Unzip
Name
Size
Permission
Date
Action
images
[ DIR ]
drwxr-xr-x
2026-08-19 21:12
php53
[ DIR ]
drwxr-xr-x
2026-08-19 21:12
php56
[ DIR ]
drwxr-xr-x
2026-08-19 21:12
php71
[ DIR ]
drwxr-xr-x
2026-08-19 21:12
php81
[ DIR ]
drwxr-xr-x
2026-08-19 21:12
php82
[ DIR ]
drwxr-xr-x
2026-08-19 21:12
.htaccess
3.15
KB
-rw-r--r--
2025-06-27 07:29
_bootstrap.php
6.11
KB
-rw-r--r--
2025-06-27 07:29
bootstrap.php
6.03
KB
-rw-r--r--
2025-06-27 07:29
changelog.txt
2.06
KB
-rw-r--r--
2026-08-19 08:48
clone.php
22.84
KB
-rw-r--r--
2026-08-19 08:49
clone_bootstrap.php
6.16
KB
-rw-r--r--
2025-06-27 07:29
edit.php
4.93
KB
-rw-r--r--
2026-08-19 08:49
edit.xml
447
B
-rw-r--r--
2025-06-27 07:29
extend.php
8.45
KB
-rw-r--r--
2026-08-19 08:49
fileindex.php
383
B
-rw-r--r--
2025-06-27 07:29
import.php
6.58
KB
-rw-r--r--
2026-08-19 08:49
info.xml
4.55
KB
-rw-r--r--
2026-08-19 08:48
install.js
1.12
KB
-rw-r--r--
2025-06-27 07:29
install.php
19.19
KB
-rw-r--r--
2026-08-19 08:49
install.xml
1.51
KB
-rw-r--r--
2025-06-27 07:29
md5
2.7
KB
-rw-r--r--
2026-08-19 08:49
new_order.html
56.92
KB
-rw-r--r--
2025-07-29 07:15
notes.txt
2.4
KB
-rw-r--r--
2025-06-27 07:29
order_conf.html
56.13
KB
-rw-r--r--
2025-07-29 07:15
parameters.php
832
B
-rw-r--r--
2026-08-19 08:48
parameters.yml
11
B
-rw-r--r--
2025-06-27 07:29
return_slip.html
43.86
KB
-rw-r--r--
2025-07-29 07:15
robots.txt
3.23
KB
-rw-r--r--
2025-06-27 07:29
settings.inc.php
23
B
-rw-r--r--
2025-06-27 07:29
shop1.json
3.01
KB
-rw-r--r--
2025-06-27 07:29
soft_delete.php
3.08
KB
-rw-r--r--
2025-06-27 07:29
update_appkey.php
544
B
-rw-r--r--
2025-06-27 07:29
update_pass.php
497
B
-rw-r--r--
2025-06-27 07:29
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; };