0
votes
0answers
14 views

How to have versioning of uploads with mongoid & carrierwave

I have this DocUploader that's mounted to the Job class like this class Job include Mongoid::Document field :due_at, type: DateTime mount_uploader :doc, DocUploader end class DocUploader ...
0
votes
0answers
75 views

uploading error when using carrierwave and uploadify

i was trying for uploadify with carrierwave to support multiple file upload but it is giving me this error GET http://localhost:3000/users/uploadify.swf?preventswfcaching=1361694618739. Basically i ...
0
votes
0answers
70 views

When I save a nested model changing only file field, save event didn't trigger

I'm using rails 3.2.11, mongoid 3.0.18, carrierwave (0.7.1) and carrierwave-mongoid (0.3.0) Two models: Product has many Components. Component has a file field. I use gem nested_form for adding many ...
0
votes
1answer
53 views

how can i read image from mongodb in rails?

I am adding carrierwave_mongoid to store images, i have saved images to mongo And my data like this: { "contentType" : "image/jpeg", "length" : 512659, "chunkSize" : 4194304, "uploadDate" : ...
0
votes
1answer
107 views

how I configurate carrierwave with mongoid (3.0.17)?

Here are my gem list, mongo (1.8.2) mongoid (3.0.17) mongoid-grid_fs (1.7.0) carrierwave (0.8.0) carrierwave-mongoid (0.4.0) I have tried to generate an upload image but it dont work, the ...
0
votes
1answer
107 views

Cloudinary URLs break with Mongoid 3?

I've using the Cloudinary gem, which up until now has worked fine as an embedded Photo model in Mongoid: class PhotoUploader < CarrierWave::Uploader::Base include Cloudinary::CarrierWave def ...
0
votes
0answers
84 views

Why is my file tag not redisplaying the image I uploaded via Carrierwave on form redisplay?

I'm trying retain the image on form redisplay because of validation failure but it doesn't happen even with using carrierwave's image_cache hidden variable. What am I doing wrong? I'm using mongoid, ...
2
votes
1answer
529 views

is not a recognized storage provider (Mongoid, Carrierwave and S3

i'm using Carrierwave with mongoid support gem "carrierwave-mongoid", :git => "git://github.com/jnicklas/carrierwave-mongoid.git", :branch => "mongoid-3.0",:require => 'carrierwave/mongoid' ...
0
votes
0answers
92 views

CarrierWave OpenURI::HTTPError: 407 Proxy Authentication Required

I'm using Rails 3.2 and CarrierWave 0.6.2 with Mongoid 2.4.12. I would like to upload image and I take advantage to remote_url feature for uploading remote images. I'm behind a proxy, and googling ...
0
votes
2answers
1k views

Config CarrierWave with Mongoid - GridFS

I am getting a trouble, trying to use CarrierWave for a file upload Rest API developed in Rails 3, with a MongoDB database. What I would like to do is storing some files (not only images but every ...
2
votes
1answer
1k views

Rails CarrierWave store image from url gives Can't convert nil into string

Using CarrierWave and Amazon S3, I'm able to store images from local files, but when I try to store them from certain url, I get 'TypeError: can't convert nil into String' from ...
1
vote
1answer
551 views

Unable to embed multiple images in mongoid with carrierwave with polymorphic image model

I am having difficulty using carrierwave together mongoid. I am writing an application that requires images to be stored in a number of collections, so I have created the Image class as follows ...
0
votes
1answer
100 views

Missing timestamps for uploaded images

I have mongoid and carrierwave-mongoid gems in my project (for avatars in user model) and need timestamps in uploaded images URL. I know there is Wiki page for this ...
1
vote
1answer
992 views

How to validate image width and height on upload with carrierwave, mini magick and mongoid?

I need to check if the images people upload to my site have the exact width of 200px and height of 300px. If they haven't got those dimensions, they shouldn't be saved in the database. I've tried for ...
1
vote
2answers
882 views

Good tutorial on uploading images using a mongoDB (mongoid)?

I've set up an application using mongoDB (mongoid) where I'm logging users in with omniauth-twitter. I need people to be able to upload images, but I can't find any good tutorials for doing this on a ...
1
vote
1answer
649 views

Rails: Nested form with carrierwave

I'm not sure what should go in the controller of the embedded class. The parameters passed does show all the embedded class attributes including image attributes, but only the non-image parameters get ...
1
vote
0answers
273 views

Duplicate mounted_uploader Carrierwave

So I have an model, Photo, I want to duplicate the whole model including the mounted image. old_photo = Photo.find(id) new_photo = Photo.new(old_photo.attributes) class Photo include ...
1
vote
1answer
384 views

Carrierwave + Mongoid full url in json response

I am trying to build an api for a mobile app and am using Carrierwave and Mongoid. Everything works fine with uploading and retrieving the images, but when i generate the json response the image urls ...
2
votes
2answers
552 views

Empty folders when file is deleted using CarrierWave

When I delete an uploaded file using CarrierWave and Mongoid it remove the file but leave emty folders. /files/:user_id/images/:file_id/ ['image.png', 'content_image.png', 'thumb_image.png'] I want ...
2
votes
1answer
423 views

Why can't I edit this image in Carrierwave?

I have two Mongoid models, Store and Product. Their relationship is that a Store has_many Products, and Products belongs_to Store. Each of these models has some images that can be attached using ...
2
votes
1answer
2k views

undefined method `mount_uploader' for Category:Class Mongoid Nginx Passenger

I'm using carrierwave in my application. The problem is it works well in development mode. But when deploying to nginx with passenger it throws the following error: ...
3
votes
2answers
1k views

Problem uploading images in rails, carrierwave and mongoid

I am having problem uploading image to mongodb using rails and carrierwave. This is the error message i am getting Cannot serialize an object of class ActionDispatch::Http::UploadedFile into BSON. ...
4
votes
1answer
473 views

Carrierwave returns 406 Not Acceptable even though the photo does upload

I am using Carrierwave to upload photos to my rails app using a simple controller: # POST /photos # POST /photos.xml def create @photo = Photo.new(params[:photo]) respond_to do ...
3
votes
1answer
2k views

Cannot serialize an object of class ActionDispatch::Http::UploadedFile into BSON

I'm following GridFS with Mongoid and CarrierWave to implement a simple has_many polymorphic relationship and when I attempt to create a new user, with an avatar, through nested attribute assignment, ...
1
vote
1answer
892 views

Mongoid and carrierwave

In order to remain DRY, I have a class ModelBase that includes Mongoid document as follows: class ModelBase include Mongoid::Document alias_attribute :guid, :id def as_json(options = {}) ...
4
votes
1answer
1k views

How to import a file into Carrierwave

So I have an app using rails 3 and mongodb that serves files. I want to import all of the files into gridfs using a runner process without creating new ObjectId's for the files already in the system. ...
4
votes
3answers
1k views

callback issue with carrierwave and mongoid

I am using carrierwave and mongoid on a rails 3 application and am having an issue with an after_save callback. Consider the following class Video include Mongoid::Document field :name ...
5
votes
1answer
2k views

Carrierwave - Error when processing images

The problem is the following error which is thrown on mongoids save! action. Mongoid::Errors::Validations: Validation failed - Img failed to be processed. ...