[Rails] Re: Upload File

Fird Abrar firdzz at gmail.com
Wed Jul 26 06:32:53 GMT 2006


class PictureController < ApplicationController
  def new
    picture = Picture.new()
    @picture.uploaded_file = @params['picture_file']
    @picture.save
    redirect_to :action => 'index'
  end
end

Steve Ross wrote:
> Can you show a little more code so we can see what's causing the error? 
> Are
> you using file_column? Where did you initialize @picture, etc.


-- 
Posted via http://www.ruby-forum.com/.


More information about the Rails mailing list