Question

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

        }
    }
}
Was it helpful?

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());
    }
}

OTHER TIPS

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());
    } }
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top