Search code examples
yiiyii-components

Yii not able to save Image files CFileUploaded


I am not able to save the image uploaded from simple Form with this code

public function actionImage()
{
    print_r($_FILES);
    $dir = Yii::getPathOfAlias('application.uploads');

    if(isset($_POST['img']))
    {
        $model = new FileUpload();
        $model->attributes = $_POST['img'];
        $model->image=CUploadedFile::getInstance($model,'image');
        if($model->validate())
        {
            $model->image->saveAs($dir.'/'.$model->image->getName());
            // redirect to success page

        }
    }
}

Solution

  • To Answer my own question instead of using above code I used this:

    public function actionImage()
    {   
        $dir = Yii::getPathOfAlias('application.uploads');
        if (isset($_FILES['img']))
        {   
            $image = CUploadedFile::getInstanceByName('img');
            $image->saveAs($dir.'/'.$image->getName());
        }
    }