dongzao4503 2017-04-08 09:37
浏览 203
已采纳

Image.php第143行中的NotWritableException:无法将图像数据写入路径(C:\ Users \ SurajLifeean \ surj \ public \ images /)

I am using laravel 5.2 and faced a problem while working on image uploading. I am getting an error as

NotWritableException in Image.php line 143: Can't write image data to path (C:\Users\SurajLifeean\surj\public\images/)

This code is inside my controller.

  $image=$request->file('featured_image');
  $filename=time().'.'.$image->getClientOriginalExtension();
  $location = public_path('images/',$filename);
  Image::make($image)->resize(800,400)->save($location);$post->image=$filename;

i have accross a solution to include at the begining

use Illuminate\Support\Facades\File;

but it didnt help. can any one suggest me a solution

  • 写回答

1条回答 默认 最新

  • douwen9534 2017-04-08 09:43
    关注

    from your error message you got two issues,

    1 ) NotWritableException means that your folder you are trying to touch is not writeable, which means that you need to give that folder 777 permissions

    2 ) you are under windows environment, while you are using UNIX directory separator.

    it's always good practice to use the DIRECTORY_SEPARATOR constant as directory separator instead of fixed separators.

    as follows:

    $location = public_path('images' . DIRECTORY_SEPARATOR, $filename);
    

    or simply in your case use :

    $location = public_path('images\', $filename);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 自适应 AR 模型 参数估计Matlab程序
  • ¥100 角动量包络面如何用MATLAB绘制
  • ¥15 merge函数占用内存过大
  • ¥15 Revit2020下载问题
  • ¥15 使用EMD去噪处理RML2016数据集时候的原理
  • ¥15 神经网络预测均方误差很小 但是图像上看着差别太大
  • ¥15 单片机无法进入HAL_TIM_PWM_PulseFinishedCallback回调函数
  • ¥15 Oracle中如何从clob类型截取特定字符串后面的字符
  • ¥15 想通过pywinauto自动电机应用程序按钮,但是找不到应用程序按钮信息
  • ¥15 如何在炒股软件中,爬到我想看的日k线