class Controller_Download extends Controller_Template { public function action_index($file_id) { $this->auto_render = false; $file = Model_File::find($file_id); $this->response->set_header('Content-Type', 'application/pdf'); $this->response->set_header('Content-Disposition', 'attachment; filename="'.$file->name.'"'); readfile($file->path); // I'm not sure here return $this->response; // And here ??? } }
It looks like you're new here. If you want to get involved, click one of these buttons!