<?php
 $basePath = Alfred_Hod::options('params/jobs/candidates/path');
$file_name = basename($basePath.'/'.$this->file)   ;     
$contentType =  mime_content_type($basePath.'/'.$this->file);



header("Content-Type: ".$contentType );
header("Content-Disposition: attachment; filename=$file_name");
header("Content-Length: " . filesize($basePath.'/'.$this->file) );

ob_end_clean();
ob_flush();
echo readfile( $basePath.'/'.$this->file );
exit;