Server IP : 192.185.129.71 / Your IP : 3.14.7.99 Web Server : Apache System : Linux bh-ht-3.webhostbox.net 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : svymadmin ( 4072) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home4/svymadmin/public_html/vivekaexcel.edu.in/school/application/views/install/main/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php if(isset($error)) { ?> <div class="row" style="margin-top: 20px;"> <div class="col-md-8 col-md-offset-2"> <div class="alert alert-danger"> <strong><?php echo $error; ?></strong> </div> </div> </div> <?php } ?> <div class="row" style="margin-top: 30px;"> <div class="col-md-8 col-md-offset-2"> <div class="panel panel-default" data-collapsed="0" style="border-color: #dedede;"> <!-- panel body --> <div class="panel-body" style="font-size: 14px;"> <p style="font-size: 14px;"> <strong>Your database is successfully connected</strong>. All you need to do now is <strong>hit the 'Install' button</strong>. The auto installer will run a sql file, will do all the tiresome works and set up your application automatically. </p> <br> <div class="row"> <div class="col-md-12"> <button type="button" id="install_button" class="btn btn-info"> <i class="entypo-check"></i> Install </button> <div id="loader" style="margin-top: 20px;"> <img src="<?php echo base_url('assets/loader.gif');?>" alt="" width="20"> Importing database .... </div> </div> </div> </div> </div> </div> </div> <script type="text/javascript"> $(document).ready(function() { $('#loader').hide(); $('#install_button').click(function() { $('#loader').fadeIn(); window.location.href = '<?php echo site_url('install/step4/confirm_install');?>'; }); }); </script>