I am using beforeSave() to rename the file thats been uploaded. but its not getting renamed before save into the folder. it has the same name as uploaded one.Iam using extension EAjaxUpload for uploading the file. can anyone help me where i have gone wrong... And i am working on windows.
In Model(AttachResume):-
protected function beforeSave()
{
$path='C:\\wamp\\www\\Myapp\\Resumes\\';
$uid=$_POST['AttachResume']['User_id'];
//var_dump($this->User_id); exit();
$file=$_POST['AttachResume']['ResumeName'];
//var_dump($this->ResumeName); exit();
$temp = $path.$file;
$newname=$uid.$file;
if(file_exists($temp)==true)
{
rename($temp, $path.$newname);
}
return parent::beforeSave();
}
Controller:-
public function actionIndex()
{
$model=new AttachResume;
if(isset($_POST['AttachResume']))
{
$model->User_id=$_POST['AttachResume']['User_id'];
$model->ResumeName=$_POST['AttachResume']['ResumeName'];
$model->save();
}
$this->render('index',array('model'=>$model));
}
Myapp is the aplication.Resume is the folder under it where i have to save documents, Thanks