芝麻web文件管理V1.00
编辑当前文件:/home/pulsehostuk9/www/status.pulsehost.co.uk/app/controllers/admin/AdminLogDownload.php
params[0]) ? input_clean($this->params[0]) : null; if(!$log_id) { redirect('admin/logs'); } $log_id = preg_replace('/[^a-zA-Z0-9-]/', '', $log_id); if(!file_exists(UPLOADS_PATH . 'logs/' . $log_id . '.log')) { redirect('admin/logs'); } /* Set a custom title */ Title::set(sprintf(l('admin_log.title'), $log_id)); /* Prepare headers */ header('Content-Description: File Transfer'); header('Content-Type: text/plain'); header('Content-Disposition: attachment; filename="' . $log_id . '.log"'); header('Content-Length: ' . filesize(UPLOADS_PATH . 'logs/' . $log_id . '.log')); /* Output data */ ob_clean(); flush(); readfile(UPLOADS_PATH . 'logs/' . $log_id . '.log'); } }