/var/softaculous/invoice
NameSizeModeActions
images/-0755rm
php53/-0755rm
php56/-0755rm
php71/-0755rm
php81/-0755rm
php82/-0755rm
.htaccess4580644editdlrm
changelog.txt46140644editdlrm
clone.php58140644editdlrm
edit.php43030644editdlrm
edit.xml4470644editdlrm
fileindex.php4060644editdlrm
import.php47610644editdlrm
info.xml31330644editdlrm
install.js9420644editdlrm
install.php62560644editdlrm
install.xml23780644editdlrm
ipconfig.php35260644editdlrm
md523230644editdlrm
notes.txt6660644editdlrm
upgrade.php64180644editdlrm
upgrade.xml6460644editdlrm
Edit: /var/softaculous/invoice/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; };