/var/softaculous/openclass
NameSizeModeActions
images/-0755rm
php53/-0755rm
php56/-0755rm
php71/-0755rm
.htaccess83750644editdlrm
auth.php3740644editdlrm
clone.php77640644editdlrm
database.php6180644editdlrm
edit.php58830644editdlrm
edit.xml4470644editdlrm
fileindex.php2480644editdlrm
import.php47770644editdlrm
info.xml22420644editdlrm
install.js9240644editdlrm
install.php92020644editdlrm
install.xml26810644editdlrm
md512380644editdlrm
notes.txt13390644editdlrm
openclass.sql725900644editdlrm
openclass.zip190788820644editdlrm
robots.txt660644editdlrm
sitemap.xml37210644editdlrm
upgrade.php105320644editdlrm
upgrade.xml8220644editdlrm
Edit: /var/softaculous/openclass/install.js (924B)
////////////////////////////////////////////////////////////// // 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; };