I've spent the last few days trying to figure this out. I have my own
Filereference class I use with PHP. But I'm trying to use it with
Rails and can't seem to get it to work. I even downloaded some samples
online and can't get those to work (http://blog.vixiom.com/2006/09/08/
multiple-file-upload-with-flash-and-ruby-on-rails/).
Basically my rails is something like this:
data = params[:filedata]
name = params[:Filename]
directory = "public/data"
path = File.join(directory, name)
File.open(path, 'wb') do |file|
file.puts data.read
end
And when I use filereference and upload it in flash I get an
httpError: 422
I get this both in mine and the example's file.
Have you tried the "Flash 8 for Windows" fix on the blog page you
linked? Without any more details about your environment, that's the
first thing I'd suspect. Not sure how that fix will interact with the
new Rack stuff in 2.3, though.