You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@couchdb.apache.org by faust 1111 <fa...@gmail.com> on 2010/04/05 23:42:58 UTC

Upload file with Rails

i try upload file
i use Rails 3 and CouchRest
like this

@video = Video.new(params[:video])

   if @video.save
     @video.put_attachment('source', params[:video][:source])
   end

and have error

redundant UTF-8 sequence

backtrace
http://gist.github.com/356934

Can any one help?
any examples uploading files?