3

記事に写真をアップロードするために、ActiveAdmin で Paperclip を使用しています。

しかし、問題があります。既存の記事を編集しているとき、Webrcik を開始してから初めて、非常にうまく機能します。しかし、体系的には、記事を 2 回目に編集しようとすると (どの記事でも)、Windows は "file.exe" が機能を停止したことを通知し、" Internal Server Error Invalid argument - STDOUT " がブラウザーに表示されます。

それで、webrickを再起動すると、アップロードが1回しか機能しません...

ログは次のとおりです。

Started PUT "/admin/articles/1" for 127.0.0.1 at 2012-10-24 18:11:45 +0200
Processing by Admin::ArticlesController#update as HTML

  Parameters: {"utf8"=>"✓", "authenticity_token"=>"VaB3lx3UZaOjUA6Yh+h8jG7ZExSQZDiyZUw6GYJQPbY=", "article"=>{"title"=>"ee", "desc"=>"ee", "content"=>"eeee", "photo"=>#<ActionDispatch::Http::UploadedFile:0x3cce7f0 @original_filename="Desert.jpg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"article[photo]\"; filename=\"Desert.jpg\"\r\nContent-Type: image/jpeg\r\n", @tempfile=#<File:C:/Users/Greg/AppData/Local/Temp/RackMultipart20121024-6620-oorxwu>>}, "commit"=>"Update Article", "id"=>"1"}
  [1m[35mAdminUser Load (0.0ms)[0m  SELECT `admin_users`.* FROM `admin_users` WHERE `admin_users`.`id` = 2 LIMIT 1
  [1m[36mArticle Load (1.0ms)[0m  [1mSELECT `articles`.* FROM `articles` WHERE `articles`.`id` = ? LIMIT 1[0m  [["id", "1"]]

Command :: identify -format %wx%h "C:/Users/Greg/AppData/Local/Temp/Desert20121024-6620-16n1ehl.jpg[0]"

Command :: identify -format %m "C:/Users/Greg/AppData/Local/Temp/Desert20121024-6620-16n1ehl.jpg[0]"

Command :: identify -format %m "C:/Users/Greg/AppData/Local/Temp/Desert20121024-6620-16n1ehl.jpg[0]"

Command :: convert "C:/Users/Greg/AppData/Local/Temp/Desert20121024-6620-16n1ehl.jpg[0]" -auto-orient -resize "510x" -crop "510x350+0+16" +repage "C:/Users/Greg/AppData/Local/Temp/Desert20121024-6620-16n1ehl20121024-6620-mvfl3a"

Command :: file -b --mime "C:/Users/Greg/AppData/Local/Temp/Desert20121024-6620-16n1ehl20121024-6620-mvfl3a"

[paperclip] Error while determining content type: Command 'file -b --mime :file' returned 255. Expected 0
Command :: identify -format %wx%h "C:/Users/Greg/AppData/Local/Temp/Desert20121024-6620-16n1ehl.jpg[0]"

Command :: identify -format %m "C:/Users/Greg/AppData/Local/Temp/Desert20121024-6620-16n1ehl.jpg[0]"

Completed 500 Internal Server Error in 22073ms

Errno::EINVAL (Invalid argument - ruby_setenv):

私は解決策を探していました...しかし、私はそれを見つけられませんでした。

誰かが問題の原因を知っていますか?

4

1 に答える 1

0

「ファイル」プログラムは Windows の一部ではありません。これは、ここまで取得するためにそれ (またはそれを含むもの) をインストールしたことを示唆しています。Gnu は、GnuWin32 の一部として Windows バージョンの 'file' を提供します

そのプログラムのコピーについて詳しく知ることが、問題を解決するための最初のステップになるでしょう。(お役に立てれば。)

于 2013-09-09T03:34:53.943 に答える