File upload kills rails app and server - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T12:34:23Z http://stackoverflow.com/feeds/question/697483 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/697483/file-upload-kills-rails-app-and-server -1 File upload kills rails app and server totocaster 2009-03-30T14:35:16Z 2009-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 &lt;ControllerName&gt; </code></pre> <p>Why?</p> http://stackoverflow.com/questions/697483/file-upload-kills-rails-app-and-server/697563#697563 2 Answer by Can Berk Güder for File upload kills rails app and server Can Berk Güder 2009-03-30T14:56:57Z 2009-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>