/var/softaculous/oscom
NameSizeModeActions
images/-0755rm
php53/-0755rm
php56/-0755rm
php71/-0755rm
php81/-0755rm
admin_configure.php20280755editdlrm
extend.php98750755editdlrm
fileindex.php2150755editdlrm
import.php41690755editdlrm
includes_configure.php3300755editdlrm
info.xml26500755editdlrm
install.js9420755editdlrm
install.php89100755editdlrm
install.xml17790755editdlrm
md540570755editdlrm
notes.txt15540755editdlrm
params-local.php1520755editdlrm
update_pass.php6910755editdlrm
Edit: /var/softaculous/oscom/install.js (942B)
////////////////////////////////////////////////////////////// // 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(!(/^([a-zA-Z0-9])+([a-zA-Z0-9\._-])*@([a-zA-Z0-9_-])+([.])+([a-zA-Z0-9\._-]+)+$/.test($('admin_email').value))){ alert('{{err_ademail}}'); return false; } return true; };