File upload kills rails app and server - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T12:34:23Zhttp://stackoverflow.com/feeds/question/697483http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/697483/file-upload-kills-rails-app-and-server-1File upload kills rails app and servertotocaster2009-03-30T14:35:16Z2009-03-30T14:56:57Z
<p>I have simple model which looks like this:</p>
<pre><code>def video_file=(input_data)
unless input_data.to_s.empty?
newfile = File.open("#{RAILS_ROOT}/public/to_upload/#{self.filename}_vid.f4v", "wb") do |f|
while buff = input_data.read(4096)
f.write(buff)
end
end
end
end
</code></pre>
<p>and here the error which rails manages to display and then dies, literally.</p>
<pre><code> ActiveRecord::StatementInvalid in <ControllerName>
</code></pre>
<p>Why?</p>
http://stackoverflow.com/questions/697483/file-upload-kills-rails-app-and-server/697563#6975632Answer by Can Berk Güder for File upload kills rails app and serverCan Berk Güder2009-03-30T14:56:57Z2009-03-30T14:56:57Z<p>Replace</p>
<pre><code>newfile = File.open(path, "wb") do |f|
while buff = input_data.read(4096)
f.write(buff)
end
</code></pre>
<p>with</p>
<pre><code>if input_data.respond_to?(:read)
File.open(path, "wb") { |f| f.write(input_data.read) }
end
</code></pre>