[ SYSTEM ]: Linux box5478.bluehost.com 5.14.0-687.15.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Jun 11 08:51:45 EDT 2026 x86_64
[ SERVER ]: Apache | PHP: 8.3.32
[ USER ]: citypros | IP: 10.36.205.101
GEFORCE FILE MANAGER
/
var
/
softaculous
/
backdrop
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 images
SET
[ DEL ]
📁 php53
SET
[ DEL ]
📁 php56
SET
[ DEL ]
📁 php71
SET
[ DEL ]
📁 php81
SET
[ DEL ]
📁 php82
SET
[ DEL ]
📁 upgrade
SET
[ DEL ]
📄 clone.php
14,167 B
SET
[ EDIT ]
|
[ DEL ]
📄 edit.php
5,263 B
SET
[ EDIT ]
|
[ DEL ]
📄 edit.xml
433 B
SET
[ EDIT ]
|
[ DEL ]
📄 fileindex.php
130 B
SET
[ EDIT ]
|
[ DEL ]
📄 import.php
3,780 B
SET
[ EDIT ]
|
[ DEL ]
📄 info.xml
3,469 B
SET
[ EDIT ]
|
[ DEL ]
📄 install.js
924 B
SET
[ EDIT ]
|
[ DEL ]
📄 install.php
12,688 B
SET
[ EDIT ]
|
[ DEL ]
📄 install.xml
1,147 B
SET
[ EDIT ]
|
[ DEL ]
📄 layout.layout.home.json
8,301 B
SET
[ EDIT ]
|
[ DEL ]
📄 md5
1,811 B
SET
[ EDIT ]
|
[ DEL ]
📄 notes.txt
1,229 B
SET
[ EDIT ]
|
[ DEL ]
📄 settings.php
24,623 B
SET
[ EDIT ]
|
[ DEL ]
📄 system.core.json
4,000 B
SET
[ EDIT ]
|
[ DEL ]
📄 update.settings.json
506 B
SET
[ EDIT ]
|
[ DEL ]
📄 upgrade.php
6,155 B
SET
[ EDIT ]
|
[ DEL ]
📄 upgrade.xml
328 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: install.js
////////////////////////////////////////////////////////////// // 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 Email if(window.check_punycode){ if(!check_punycode($('admin_email').value)){ alert('{{err_ademail}}'); return false; } return true; } return true; };