[eluser]Thiago Luiz[/eluser]
Put the pdf file into a subfolder on the same level of the CI system folder. In the controller, write a function with following contents:
$this->load->helper ( ‘download’);
$data = file_get_contents ( “subfolder / file.pdf”);
$name = ‘file.pdf’;
force_download ($name, $data);