创建缩略图失败 redmine
Creating thumbnail failed redmine
需要关于找不到缩略图的帮助不知道如何解决这个问题。
问题是,如果您添加附件,它不会显示输入图像的小图像,但 link 图像正常工作,但不会显示小图像,正如您在屏幕截图中看到的那样:
在日志中写着:
Started GET "/attachments/thumbnail/7" for 111.111.1.11 at 2021-09-06 17:01:57 +0300
Processing by AttachmentsController#thumbnail as HTML
Parameters: {"id"=>"7"}
Current user: admin (id=1)
Creating thumbnail failed (pid 97475 exit 1):
Command: '/usr/local/bin/convert' '/usr/local/www/redmine/files/2021/09/210901111738_4.jpg' -auto-orient -thumbnail '1000x1000>' '/usr/local/www/redmine/tmp/thumbnails/a78495fde3baccb50ef5da33a2de8a95c7c6aea5106ce804d6b8b9275f44626c_462889_1000.thumb'
Completed 404 Not Found in 203ms (ActiveRecord: 2.1ms)
环境:
- Redmine 版本 4.1.2.stable
- Ruby 版本 2.7.3-p183 (2021-04-05) [amd64-freebsd13]
- Rails 版本 5.2.6
- 环境制作
- 数据库适配器Mysql2
也许缩略图 href 不好,但不知道是否要检查代码是否因为在 attachments/_links.html.erb
<% if defined?(thumbnails) && thumbnails %>
<% images = attachments.select(&:thumbnailable?) %>
<% if images.any? %>
<div class="thumbnails">
<% images.each do |attachment| %>
<div><%= thumbnail_tag(attachment) %></div>
<% end %>
</div>
<% end %>
<% end %>
但这看起来不错,只有 thumbnail_tag 行(附件) 不知道这是不是直接的,所有这些 files/images 保存可能问题是因为它没有在该文件夹中保存图像哪些需要保存,是否应该保存?
是的,我知道了
第 13 行的 Gemfile 必须这样写并检查 TMP 文件夹的所有权
gem "mimemagic"
需要关于找不到缩略图的帮助不知道如何解决这个问题。
问题是,如果您添加附件,它不会显示输入图像的小图像,但 link 图像正常工作,但不会显示小图像,正如您在屏幕截图中看到的那样:
在日志中写着:
Started GET "/attachments/thumbnail/7" for 111.111.1.11 at 2021-09-06 17:01:57 +0300 Processing by AttachmentsController#thumbnail as HTML Parameters: {"id"=>"7"} Current user: admin (id=1) Creating thumbnail failed (pid 97475 exit 1): Command: '/usr/local/bin/convert' '/usr/local/www/redmine/files/2021/09/210901111738_4.jpg' -auto-orient -thumbnail '1000x1000>' '/usr/local/www/redmine/tmp/thumbnails/a78495fde3baccb50ef5da33a2de8a95c7c6aea5106ce804d6b8b9275f44626c_462889_1000.thumb' Completed 404 Not Found in 203ms (ActiveRecord: 2.1ms)
环境:
- Redmine 版本 4.1.2.stable
- Ruby 版本 2.7.3-p183 (2021-04-05) [amd64-freebsd13]
- Rails 版本 5.2.6
- 环境制作
- 数据库适配器Mysql2
也许缩略图 href 不好,但不知道是否要检查代码是否因为在 attachments/_links.html.erb
<% if defined?(thumbnails) && thumbnails %>
<% images = attachments.select(&:thumbnailable?) %>
<% if images.any? %>
<div class="thumbnails">
<% images.each do |attachment| %>
<div><%= thumbnail_tag(attachment) %></div>
<% end %>
</div>
<% end %>
<% end %>
但这看起来不错,只有 thumbnail_tag 行(附件) 不知道这是不是直接的,所有这些 files/images 保存可能问题是因为它没有在该文件夹中保存图像哪些需要保存,是否应该保存?
是的,我知道了 第 13 行的 Gemfile 必须这样写并检查 TMP 文件夹的所有权
gem "mimemagic"