1

这个问题已经在 SO 中被问过很多次,但我仍然无法弄清楚为什么这对我不起作用。

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

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

无法将图像数据写入路径(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.']);
}

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

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

编辑1:

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

文件夹结构

任何人都可以帮我解决这个问题。

提前致谢。

4

3 回答 3

2

我以某种方式想通了。

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

我使用的代码:

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

像魅力一样工作。

于 2015-07-06T06:52:27.990 回答
1

您正在尝试image使用url. 而不是url尝试关注

$path = base_path().'/images/uploads/products';
于 2015-07-06T06:31:32.307 回答
1

You can not save the image using http path. You have to use base_path() or manual type full server directory path /home/webtuningtechnology/public_html/images/ like this

于 2016-03-28T06:33:14.550 回答