Displaying a Carrierwave filename in the view
I have been able to get the filename via the file internal parameter: <%= @page.form.file.filename %>
I have been able to get the filename via the file internal parameter: <%= @page.form.file.filename %>
It’s likely that your db on heroku doesn’t have the image column in the receipts table.
This is solution to upload multiple images using carrierwave in rails 4 from scratch Or you can find working demo : Multiple Attachment Rails 4 To do just follow these steps. rails new multiple_image_upload_carrierwave In gem file gem ‘carrierwave’ bundle install rails generate uploader Avatar Create post scaffold rails generate scaffold post title:string Create post_attachment … Read more