���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /var/www/html/adimi/application/views/installer/ |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags --> <title><?php echo $title;?></title> <!-- Bootstrap --> <link href="<?php echo base_url();?>assets/bootstrap/css/bootstrap.min.css" rel="stylesheet"> <link href="<?php echo base_url();?>assets/installer/css/style.css" rel="stylesheet"> </head> <body> <div class="page-wrapper"> <div class="content-wrapper"> <div class="container"> <!-- begin of row --> <div class="row"> <div class="box px-sm-15"> <div class="page-content"> <div class="outer-container"> <?php $error_msg = $this->session->userdata('error_msg'); if(isset($error_msg) && !empty($error_msg)){ ?> <div class="alert alert-dismissable bg-exception btn-warning"> <button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button> <?php echo $error_msg; $this->session->unset_userdata('error_msg'); ?> </div> <?php }?> <div class="box-inner"> <div class="inner"> <img src="<?php echo base_url()?>assets/installer/img/001-trash-bin.png" alt=""> <h4>Please delete installer to run your application</h4> </div> <div class="text-right"> <a href="<?php echo base_url()?>installer/remove_installer" class="btn btn-danger btn-block">Delete Now</a> </div> <div class="text-center bordered-area"> <span>or</span> </div> </div> <div class="instruction"> <h5 class="no-text">If you Don't have permission to delete the installer !</h5> <p class="text-success">Please go through the following steps.</p> <ul class="step-list"> <li><span>1.</span> Go to the root folder of your server where placed all the files. ex: public_html/</li> <li><span>2.</span> Delete the install folder.</li> <li><span>3.</span> Then refresh this page or click the button below.</li> </ul> <div class="text-right"> <a href="<?php echo base_url()?>installer" class="btn btn-refresh">Refresh</a> </div> </div> </div> </div> </div> </div> <!-- /.End of page wrapper --> <footer class="footer text-center"> <div class="container"> <div class="fText">Developed by <a target="_blank" href="https://www.bdtask.com/">bdtask</a></div> </div> </footer> <!-- /.End of footer --> </div> </div> </div> <script src="<?php echo base_url()?>assets/js/jquery.min.js"></script> <script src="<?php echo base_url()?>assets/bootstrap/js/bootstrap.min.js"></script> </body> </html>