0

我正在使用unisharp filemanager- Laravel 5.4laravel -filemanager

我根据文档集成配置了所有内容。我现在可以上传文件,但无法裁剪和调整同一张上传的图像。
我在控制台中收到以下错误

Failed to load resource: the server responded with a status of 500 (Internal Server Error) - http://127.0.0.1:8000/laravel-filemanager/doresize?img=http%3A%2F%2F127.0.0.1%3A8000%2Fphotos%2F1%2F835e871b8f5105255b1ead21947b6799.jpeg&working_dir=%2F1&dataHeight=&dataWidth=&=1490245875358

如果我转到上面的链接,它会抛出一个错误 文件管理器

NotReadableException in AbstractDecoder.php line 335: Image source not readable

中的代码crop.blade.php如下所示

 <button class="btn btn-primary" onclick="performCrop()">
  {{ trans('laravel-    filemanager::lfm.btn-crop') }}
 </button>
 <button class="btn btn-info" onclick="loadItems()">
  {{ trans('laravel-    filemanager::lfm.btn-cancel') }}
 </button>
  <form action="{{ route('unisharp.lfm.getCrop') }}" role='form' name='cropForm' id='cropForm' mathod='post'>
    <input type="hidden" id="img" name="img" value="{{ $img }}">
    <input type="hidden" id="working_dir" name="working_dir" value="{{ $working_dir }}">
    <input type="hidden" id="dataX" name="dataX">
    <input type="hidden" id="dataY" name="dataY">
    <input type="hidden" id="dataWidth" name="dataWidth">
    <input type="hidden" id="dataHeight" name="dataHeight">
    <input type='hidden' name='_token' value='{{csrf_token()}}'>
  </form>`

如何解决此 500 Internal Server Error 错误?

4

2 回答 2

0

在要上传文件的目录中尝试 chown 和 chmod。这是一个教程 chmod, chown

于 2017-03-23T06:53:27.880 回答
0

进入你的项目名称/unisharp/laravel-filemanager/views/crop.blade.php 并使用这个方法:函数

performCrop(){..
data:{
  img: '{{ $img }}', -> change this with 
  img: '{{ parse_url($img, PHP_URL_PATH) }}',

  ...
}

对 resize.balde.php 做同样的事情

参考链接:https ://github.com/UniSharp/laravel-filemanager/issues/213

于 2017-04-05T21:00:14.017 回答