0
votes
0answers
13 views

Carrierwave Upload with Amazon S3 - 403 Forbidden Error

I am attempting to use Carrierwave with Amazon S3 in my Rails app, and I keep getting the error "Excon::Errors::Forbidden (Expected(200) <=> Actual(403 Forbidden)." ...
0
votes
2answers
58 views

Carrierwave doesn't remove the deleted files from S3

I have 2 Carrierwave uploaders - ItemUploader and ImageUploader, and am using fog. I can upload files to S3 just fine, but doing a destroy doesn't remove them from S3. This is my destroy action: ...
-1
votes
0answers
23 views

Upload to S3 on Test Environment Using Carrierwave

I'm not been able to send files to S3 on my test environment using Carrierwave/Fog. I don't want to mock this action for now. Everything is working in the development environment. This is the rspec ...
0
votes
2answers
42 views

How do I dynamically generate a download link for file uploaded to S3 with Carrierwave?

I have 2 models that I want CarrierWave to interact with. Item and Image models. What I want to happen is once the user uploads their item to S3 via Carrierwave - that part is pretty straight forward ...
0
votes
1answer
44 views

save FFMPEG screenshot output file to variable

How can i get the output file of this FFMPEG code saved to a variable? def take_screenshot logger.debug "Trying to grab a screenshot from #{self.file}" system "ffmpeg -i #{self.file} -ss ...
0
votes
2answers
54 views

Amazon S3 Access Denied when reading S3 bucket files with “+” sign

I am working on a rails application for which I use carrierwave with fog storage. I have a couple of fields in my form where users can submit an app its(Name, short & long description, image ...
0
votes
0answers
37 views

Uploading Videos to S3 with Carrierwave and Fog

I have configured my testapp with Carrierwave and Fog. My goal is to upload videos to Amazon S3 but if I try to upload a video I get an error "pipe broken". It works if I'm just uploading a picture, ...
1
vote
1answer
62 views

Carrierwave / Fog / S3 “is not a recognized storage provider”

I have a Rails app that is using Carrierwave for file uploads. It has been working fine but I want to start using Amazon S3 for my image storage. I am getting this error: ArgumentError ( is not a ...
0
votes
1answer
35 views

how difficult would it be to display the latest image uploads on the homepage in Rails 3? [closed]

I am using carrierwave for the uploading and amazon s3 for the storage. All users are able to upload images as posts. How difficult would it to display the latest 9 image uploads on the homepage? (3 ...
1
vote
1answer
60 views

What database columns needed to upload video in rails - Carrierwave, Fog & S3

I would like users to be able to upload videos to my rails site using carrierwave, fog and Amazon S3. (I haven't tried to implement S3 for storage yet and is not the subject of this questions.) What ...
1
vote
0answers
21 views

recreate versions - carrierwave-fog-aws

I'm trying to recreate the images that I have uploaded using the following in my model... Post.all.each do |ym| ym.avatar.cache_stored_file! ...
0
votes
0answers
58 views

jQuery-fileupload-rails with polymorphic model and nested resource

I'm trying to implement an uploader to Amazon s3 using CarrierWave with a jQuery FileUpload. I've been following Railscasts Episodes #253 and #381. I am able to upload to Amazon S3 using CarrierWave ...
0
votes
3answers
78 views

Carrierwave/fog are uploading files to S3, but the app is still trying to use the local path to access images

I know this is a broad question, and I'm biting off a little more than I can chew for a first stab at a rails app, but here I am. I tried to add an image upload/crop to a basic status app. It was ...
0
votes
1answer
77 views

copying s3 bucket to another aws account with CarrierWave Ruby gem

I'm trying to copy some contents from a bucket to a bucket in a different aws account. I begin by loading uploader objects into a hash. Then I attempted to connect to the other bucket and save the ...
1
vote
0answers
48 views

how to save thumbs on S3, using Carrierwave, Fog and hosting on Heroku?

I'm using Carrierwave to upload images into my app and store it on S3. That part is working fine, my issue is when I create a thumbnail of the picture which it does it fine but is storing the ...
0
votes
0answers
10 views

Carrierwave processed versions not uploaded to S3

I'm using carrierwave to upload images to s3 through background processing (resque/redis). Orginal image is being uploaded. However the processed versions are not even though the associated methods ...
0
votes
1answer
144 views

Carrierwave processed images not uploading to AWS S3

Similar problem to this question but the solution provided did not fix my problem. Carrierwave processed images not uploading to S3 Using Railscast #383 as basis for code: ...
0
votes
2answers
35 views

is it possible to show only a part of the image URL in rails?

I am using Carrierwave and S3 to allow people to upload images and the image URL is displayed as "https://myapp.s3.amazonaws.com/image/53/98ccfeca46.jpg". I would like to do one of two things. I ...
0
votes
1answer
90 views

how can I change the display of the image URL? (carrierwave, amazon s3, rails and heroku)

I'm using carrierwave to upload images. With the advice received from here, I opened up an Amazon S3 account to host my images for heroku. However, this is the image_url that is displayed on my ...
0
votes
1answer
183 views

CarrierWave S3 File Retrieve Issue - undefined method `body'

This is driving me nuts. Im using CarrierWave with Amazon S3, I can safely upload a file to the bucket, and Im trying to now (in a different request) retrieve the file and deliver it as a download to ...
0
votes
0answers
59 views

Use carrierwave to store videos?

I tried the sample example to store image/video using carrierwave with S3 and mongodb. But I want the mongodb to store metadata and S3 to store the image/video.. How can this be done ? Thanks ...
1
vote
1answer
114 views

Intermittent H12 timeout on Heroku when uploading small files to S3 w/ carrierwave_direct

I'm running a rails 3.2.11 app on Heroku and running into an intermittent issue I have been unable to figure out. I have a model that includes a file uploaded by a user. The file is typically about ...
0
votes
2answers
89 views

How do you convert spaces as underscores before uploading to s3 with Carrierwave?

I have a rails project where I'm using Carrierwave to upload files to Amazon s3. I get a bad URI(is not URI?) error on my edit action when I upload a file with spaces in it such as File Name.mp3. ...
0
votes
0answers
114 views

Cannot Read File on S3 with Carrierwave

I have an s3 account and bucket setup. Everything is working correctly for files that are market as public, but my private files are not being retrieved correctly. My configuration for the s3 ...
0
votes
0answers
48 views

carrierwave fog storage

I just cant figure out how to do this. I need to get the S3 path without the filename https://testphotobucket.s3.amazonaws.com/uploads/51237a37ff770df332000007/ and not like this ...
0
votes
1answer
341 views

Recreate versions using Carrierwave with Ruby

The website I am working on is going through a redesign and as such, our user images need to be re-sized. The website is currently using carrierwave gem to handle all image and video processing, and ...
1
vote
1answer
129 views

Rails Upload with Carrierwave, Fog to S3 - HTTP vs HTTPS

I've been following the excellent Rails Cast by Ryan Bates on uploading files to S3 (Episode 383). Things work fine - but... I'd like to use the images' HTTP URL instead of HTTPS. Tried looking in ...
1
vote
1answer
202 views

CarrierWave_Direct gem: Keep current directory structure on S3

so I have a site already in production using the carrierwave gem with images stored on amazon s3. my uploader uses the store_dir method to specify a particular structure to put in processed images. ...
0
votes
0answers
33 views

Carrierwave different permission per uploader for S3 storage?

I would like to specify different permission per uploader when file is uploaded- for example photo attachment is public, while system upload file attachment is private, is that possible to set that as ...
1
vote
1answer
192 views

Rails] Rich text editor uploading to Amazon S3

I would like to use either ckeditor or redactor for my rails application. Both ckeditor and redactor-rails have nice integration with Carrierwave already, but I'd like to know how to edit the upload ...
0
votes
0answers
142 views

problems with s3 + carrierwave + fog on production (works fine on staging)

I have a rails stack using carrierwave + fog to upload images to S3. In the staging environment everything works OK, but on production it doesn't upload anything :'( I'm passing the following ...
0
votes
0answers
148 views

issues setting up S3 with carrierwave and fog in Heroku

I've been trying to upload files to Amazon S3 through a form, but I'm getting some errors I do not know how to fix. Does somebody have experience this type of errors? Heroku log errors: response ...
0
votes
1answer
208 views

Carrierwave Fog (S3) Heroku

I am struggling with this setup and have read through Carrierwave docs and still and pulling hair. I'm getting an error when I try to start the server even in dev mode. Exiting ...
0
votes
2answers
298 views

Heroku AWS3 CarrierWave and rails issue

In an attempt to install S3 with Heroku, my app has crashed. What I want to do is have Carrierwave upload files to the S3 storage, and for rails to load the assets from S3 storage. I opened my S3 ...
2
votes
0answers
153 views

Carrierwave slow upload/saves using :fog or :s3 on an EC2 instance

I followed Ryan Bates railscasts and all uploads are very slow in any config I use (:fog, :s3). I am on an EC2 medium instance and using s3 in the same region. According to the logs, transfers from ...
1
vote
2answers
97 views

Associating a file uploaded with Carrierwave_Direct with an object

I'm uploading files directly to S3 using the carrierwave_direct gem and everything is going smoothly. However, when amazon redirects back to the URL specfied in success_action_redirect, I'm not ...
2
votes
1answer
183 views

Download a Carrierwave upload from S3

I'd like to download an image that was uploaded to S3 using carrierwave. The image is on the Card model, mounted as an uploader. I saw this answer, but had trouble getting that solution to work. My ...
2
votes
1answer
151 views

How to use Fog with CarrierWave only in Production

I am using Heroku and S3 with my Rails app. I only have the fog gem installed in production mode because my local computer is a piece of junk. Anyway, it works fine this way and has proven to be the ...
1
vote
1answer
208 views

rails carrierwave_direct unable to render direct_upload_form_for form

I'm try to set up carrierwave_direct for some image uploading in my rails 3.2 application but seem unable to render the form by using the direct_upload_form_for tags. I'm getting the error "undefined ...
0
votes
1answer
204 views

Missing requirement when using carrierwave and fog to upload file to S3

I got this error Missing required arguments: aws_access_key_id, aws_secret_access_key. That seems weird because I already added carrierwave.rb in initializers folder. The access/secret key works ...
1
vote
1answer
303 views

Carrierwave + s3 + fog (Excon::Errors::SocketError)

I'm currently getting the following error: Excon::Errors::SocketError - Broken pipe (Errno::EPIPE) when uploading images bigger than about 150kb. Images under 150kb work correctly. Research indicates ...
1
vote
1answer
82 views

How do I make fog use S3 Reduced Redundancy Storage

I'm managing some images in my app using Carrierwave and I want the files uploaded to S3 to use Reduced Redundancy Storage instead of Standard. Carrierwave uses fog to talk to S3, so how can I achieve ...
2
votes
2answers
302 views

Rails Engine not uploading to s3 with Carrierwave

I am creating a rails plugin with rails new plugin my_plugin --mountable This was quite some work to figure out but it is supposed to upload files to S3 with carrierwave, but it says ok but nothing ...
0
votes
0answers
31 views

How to save a model with mounter when file is directly uploaded to s3 in Carrierwave?

I upload a file directly to S3 In the callback from amazon s3, I get the response with the key and other params and them send it to my rails controller to create the object User Now I want to save ...
2
votes
1answer
148 views

Bad URI(is not URI?) on updating user model if avatar URL has a whitespace

I'm using carrierwave to upload images to s3 as an avatar for users, the image is been uploaded correctly, but when I try to update the user model I got an error if the url of uploaded image has a ...
1
vote
1answer
41 views

If I edit an image in a rake task with RMagick, how do I manually save it back to S3?

I have an app where people can upload pics, they're saved on S3 using the Carrierwave & Fog combo. I'm rewriting the app, so in a rake task I need to loop through all images, resize/crop them ...
2
votes
1answer
871 views

Carrierwave fog Amazon S3 images not displaying

I have installed carrierwave and fog, have successfully uploaded the images and viewed them the first time, but now it does not show the images anymore. Here is my config file ...
0
votes
1answer
112 views

Image invalid on facebook/twitter user image uploading to S3

I'm trying to upload to amazon s3 an existing image on facebook or twitter from an user that has just signed up in my application, but some validation don't let me save the user object, throws: Image ...
2
votes
2answers
205 views

301 Moved Permanently after S3 uploading

Im trying to upload images to S3 on Ruby on Rails using carrierwave and fog gems, images are uploaded correctly but when I try tu save the model containing information about the image that was just ...
0
votes
0answers
152 views

Intermittent Carrierwave S3 403 Signature Does Not Match errors

I am getting seemingly random erorrs when uploading files to s3 from my app on heroku. I am using jquery-file-upload to upload pictures to a tmp/ directory in my bucket using the CORS method and this ...

1 2 3