Firebug gives the 302, and chromes throws the other message. Basically, I'm just trying to upload images with carrierwave and then I display the thumbnail in my rails app. This works on demo and staging servers, but not on production for some reason. Any ideas as to why this may be?
<%= form_for Image.new, :html => {:multipart => true} do |g| %>
<%= g.text_field :whence, :id => "postWhence"%>
<%= g.file_field :image, :id => "postImage_file_field", multiple: true, name: "image[image]" %>
<%= g.file_field :image, :id =>"postLogo_file_field"%>
<% end %>