无法写入图像数据laravel 5 干预

Can't write image data laravel 5 Intervention

这个问题已经在 SO 中被问过很多次了,但我仍然不明白为什么这对我不起作用。

我正在从事电子商务 Laravel 项目。

问题是,当管理员上传产品的图像文件时,出现错误:

Can't write image data to path (http://example.com/ankur/images/uploads/products/img-newprod-540-350-350.jpg)

这是存储图像和相关条目的控制器片段:

public function storeGeneral(Request $request)
{

    $this->validate($request, [
    'code'                => 'required|alpha_dash|unique:products',
    'name'                => 'required',
    'description'         => 'string',
    'details'             => 'string',
    'price'               => 'required|regex:/^\d*(\.\d{2})?$/',
    'tax_amount'          => 'required|regex:/^\d*(\.\d{2})?$/',
    'net_price'           => 'required|regex:/^\d*(\.\d{2})?$/',
    'weight'              => 'required|integer',
    'image_file'          => 'image|mimes:jpeg,jpg,JPG'
    ]);
    if ($request->ajax() ) {
        if ($request->file('image_file' ) ) {
            $request['img_code'] = 'img-' . $request->get('code' );
            $product = Product::create($request->all() );
            $product->categories()->attach($request->input('category_id') );

            Session::put('product_last_inserted_id', $product->id);

            $mgCode = DB::table('products')->latest()->limit(1)->pluck('img_code');
            $imageType = [
                'product' => [
                    'height' => 350,
                    'width' => 350
                ],
                'carousel' => [
                    'height' => 163,
                    'width' => 163
                ],
                'cart' => [
                    'height' => 64,
                    'width' => 64
                ]
            ];

            foreach($imageType as $key => $value)
            {
                $fileName = Safeurl::make($mgCode );
                $image = Image::make($request->file('image_file' ) );
                //$path = public_path( 'images/uploads/products/' );
                $path = url('/images/uploads/products/');

                if ($key == 'product') {
                    $image->resize($value['width'], $value['height'] );
                    $image->save($path.'/'.$fileName."-". $value['width'] ."-".$value['height'] .".jpg", 100 );
                } else if ($key == 'carousel' ) {
                    $image->resize($value['width'], $value['height'] );
                    $image->save($path.'/'.$fileName."-". $value['width'] ."-".$value['height'] .".jpg", 100 );
                } else if ($key == 'cart' ) {
                    $image->resize($value['width'], $value['height'] );
                    $image->save($path.'/'.$fileName."-". $value['width'] ."-".$value['height'] .".jpg", 100 );
                }
            }
        } else {
            $product = Product::create($request->all() );
            Session::put('product_last_inserted_id', $product->id);
        }
        return response(['status' => 'success', 'msg' => 'The product has been added successfully.']);
    }
    return response(['status' => 'failed', 'msg' => 'The product could not be added successfully.']);
}

我对 images 目录及其子目录的文件夹权限是 0777

但我仍然得到上述错误异常。

编辑 1:

这是我的主机帐户文件管理器中的文件夹结构,它位于 public_html 目录中:

谁能帮我解决这个问题。

提前致谢。

您正在尝试使用 url 保存 image。而不是 url 尝试关注

$path = base_path().'/images/uploads/products';

我想通了。

我没有使用 url()base_path(),而是使用了 public_path()

我使用的代码:

$path = public_path('../../public_html/ankur/images/uploads/products');

工作得很好。

您不能使用http 路径保存图像。您必须像这样使用 base_path() 或手动输入完整的服务器目录路径 /home/webtuningtechnology/public_html/images/