Server IP : 192.185.129.71 / Your IP : 3.22.68.127 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/bkp/modules/backup/controllers/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php defined('BASEPATH') or exit('No direct script access allowed'); class Backup extends AdminController { public function __construct() { parent::__construct(); if (!is_admin()) { access_denied('Backup'); } } public function download($attachment) { $this->load->helper('download'); $path = $this->get_path($attachment); if (file_exists($path)) { force_download($path, null); } else { set_alert('warning', 'Could not download backup file.'); redirect(admin_url('backup')); } } /* Database back up functions */ public function index() { $data['title'] = _l('utility_backup'); $this->load->view('backup', $data); } public function make_backup_db() { hooks()->do_action('before_make_backup'); if (!is_really_writable(BACKUPS_FOLDER)) { show_error('/backups folder is not writable. You need to change the permissions to 755'); } $this->load->library('backup/backup_module'); $success = $this->backup_module->make_backup_db(true); if ($success) { set_alert('success', _l('backup_success')); } redirect(admin_url('backup')); } public function update_auto_backup_options() { hooks()->do_action('before_update_backup_options'); if ($this->input->post()) { $_post = $this->input->post(); $updated_1 = update_option('auto_backup_enabled', $_post['settings']['auto_backup_enabled']); $updated_2 = update_option('auto_backup_every', $this->input->post('auto_backup_every')); $updated_3 = update_option('delete_backups_older_then', $this->input->post('delete_backups_older_then')); $updated_4 = update_option('auto_backup_hour', $this->input->post('auto_backup_hour')); if ($updated_2 || $updated_1 || $updated_3 || $updated_4) { set_alert('success', _l('auto_backup_options_updated')); } } redirect(admin_url('backup')); } public function delete($backup) { $path = $this->get_path($backup); if (unlink($path)) { set_alert('success', _l('backup_delete')); } redirect(admin_url('backup')); } private function get_path($name) { $name = BACKUPS_FOLDER . $name; if (file_exists($name . '.zip')) { // Codeigniter backup $path = $name . '.zip'; } elseif (file_exists($name . '.sql.gz')) { // Prior to 2.3.2 // From backup_manager $path = $name . '.sql.gz'; } elseif (file_exists($name . '.sql')) { // Since 2.3.2 $path = $name . '.sql'; } else { $path = $name; } return $path; } }