sendFile does not work in server but works locally in my system.. it send the file with the name of the file as its content help me what's wrong here?
i use this code in controller
i use this code in controller
public function actionDownload($id)
{
$music=$this->loadModel($id);
Yii::app()->request->sendFile($music->song,$music->path.$music->song);
}