yii2上传目录不存在

时间:2016-08-07 13:51:10

标签: php post directory yii2

我正在尝试发布要上传的文件,并且我一直“无法打开流:没有这样的文件或目录”。我把它缩小到我的输出目录,并不确定为什么它说它不存在。我不确定yii2是否试图重新开始我的路径或者发生了什么。任何信息都会有所帮助,谢谢。

文件夹结构:

www\images\uploads\
protected\controlers\UploadController.php
protected\views\upload\index.php

index.php代码:

<?php
$output_dir = "/images/uploads/";  // <-- this is where i think my issue is
if(isset($_FILES["myfile"]))
{
$ret = array();
$error =$_FILES["myfile"]["error"];
{
    //this is hardcoded for now just to test.
    session_start();
    $listing_ID = $_GET['id'];
    if(!is_array($_FILES["myfile"]['name'])) //single file
    {
        $ImageName      = str_replace(' ','-',strtolower($_FILES['myfile']['name']));
        $ImageType      = $_FILES['myfile']['type']; //"image/png", image/jpeg etc.
        $ImageExt = substr($ImageName, strrpos($ImageName, '.'));
        $ImageExt       = str_replace('.','',$ImageExt);
        $ImageName      = substr(md5(uniqid(mt_rand(), true)), 0, 5);
        $NewImageName = $listing_ID.'_'.$ImageName.'.'.$ImageExt;
        move_uploaded_file($_FILES["myfile"]["tmp_name"],$output_dir. $NewImageName);
        echo "<br> Error: ".$_FILES["myfile"]["error"];
        $ret['fileName']= $output_dir.$NewImageName;
        $image_entry = new Images();
        $image_entry->image = $NewImageName;
        $image_entry->listing_ID = $listing_ID;
        if (!$image_entry->save()) {
            print_r($image_entry->getErrors());
        }
    }
    else
    {
        $fileCount = count($_FILES["myfile"]['name']);
        for($i=0; $i < $fileCount; $i++)
        {
            $ImageName      = str_replace(' ','-',strtolower($_FILES['myfile']['name'][$i]));
            $ImageType      = $_FILES['myfile']['type'][$i]; //"image/png", image/jpeg etc.
            $ImageExt = substr($ImageName, strrpos($ImageName, '.'));
            $ImageExt       = str_replace('.','',$ImageExt);
            $ImageName      = substr(md5(uniqid(mt_rand(), true)), 0, 5);
            $NewImageName = $listing_ID.'_'.$ImageName.'.'.$ImageExt;
            $ret[$NewImageName]= $output_dir.$NewImageName;
            move_uploaded_file($_FILES["myfile"]["tmp_name"][$i],$output_dir.$NewImageName );
            $image_entry = new Images();
            $image_entry->image = $NewImageName;
            $image_entry->listing_ID = $listing_ID;
            if (!$image_entry->save()) {
                print_r($image_entry->getErrors());
            }
        }
    }
}
echo json_encode($ret);
}
?>

1 个答案:

答案 0 :(得分:1)

我可以看到你的错误,因为你在代码的第一行使用了相对路径。 使用绝对路径然后您将看不到错误。 我想你正在使用yii 1版本。所以这可能是语法,或者你可以谷歌语法为basepath。

在第一行使用此代码: - Yii::app()->basePath . '/images/uploads/';

现在,如果你打印$ output_dir。它会显示var/www/html/your_app/images/uploads

之类的路径

如果这有助于您,请告诉我。