/var/softaculous/shopsite
NameSizeModeActions
images/-0755rm
php53/-0755rm
php56/-0755rm
php71/-0755rm
php81/-0755rm
php82/-0755rm
.htaccess820644editdlrm
arch.php2510644editdlrm
fileindex.php150644editdlrm
import.php33100644editdlrm
info.xml31270644editdlrm
install.js9420644editdlrm
install.php111190644editdlrm
install.xml6380644editdlrm
md587000644editdlrm
notes.txt3560644editdlrm
wwwindex.php860644editdlrm
Edit: /var/softaculous/shopsite/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; };