Tagged Questions
0
votes
0answers
22 views
Accessing to an image instance with carrierwave and fog
I'm trying to use this solution to get the dimensions of an image. In development works great, but in staging (using fog) with img = ::Magick::Image::read(@file.file).first throws me:
private method ...
0
votes
2answers
54 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:
...
0
votes
2answers
40 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
65 views
Fog provider can't be blank - fog-aws-asset_sync
Ugh, I'm getting the same error as here....rails assets:precompile during slug for s3 error: Fog provider and directory can't be blank when env are set on the solution is not working...
When I ...
1
vote
1answer
112 views
Fog gem uploading fail with Excon::Errors::HTTPStatusError
I cannot figure out why I'm getting this error with Fog 1.9.0, rails 3.12 & carrierwave
Completed 500 Internal Server Error in 3256ms
Excon::Errors::HTTPStatusError (Expected(200) <=> ...
4
votes
2answers
195 views
rails refinerycms s3 upload error
I'm trying to configure RefineryCMS to use Fog for S3 uploads. Here's the error I'm getting:
ArgumentError in Refinery::Admin::ImagesController#create
The following keys are invalid: :url
My ...
1
vote
1answer
128 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
79 views
How to verify AWS server termination with Fog?
I have 3 line of code for a Rails app in a 'begin' block that is meant to terminate an AWS compute instance using Fog and set a string value upon success:
@server = ...
0
votes
0answers
138 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
205 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
...
2
votes
1answer
141 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 ...
0
votes
2answers
389 views
Uploading to Rackspace Cloud Files with paperclip and fog
Can't figure out how to do this? and couldn't find much help from anywhere else!
I have set up the paperclip and fog like this;
config/initializers/fog.rb
connection = Fog::Storage.new({
...
1
vote
1answer
298 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 ...
0
votes
1answer
42 views
When updating a _form partial that has an image, but not the image, I get an error
I am using Carrierwave & Fog to push images str8 to S3.
The creation action works just fine. The issue is whenever I go to update the record, say change the name attribute, and I don't do ...
1
vote
1answer
40 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 ...
0
votes
0answers
72 views
Fog error: nodename nor servname provided
I have the following set up for FOG basically right out of the FOG website enter link description here
def fog_save_file_for(filename, file)
# create a connection
connection = Fog::Storage.new({
...
1
vote
1answer
104 views
deploying assets to S3 via Heroku using assets_s3
I've followed the guide from Heroku
by adding environment variables and adding
config.action_controller.asset_host = "https://#{ENV['FOG_DIRECTORY']}.s3.amazonaws.com"
to ...
0
votes
1answer
153 views
Clone remote S3 carrierwave image to another model
I have two ActiveRecord models both with the same Carrierwave Uploader
Template < ActiveRecord:Base
mount_uploader :icon_image, ImageUploader
end
Profile < ActiveRecord:Base
mount_uploader ...
3
votes
1answer
277 views
Fog S3 Upload leads to
I am developing a platform that allows merchants to upload a picture of their store. I am using Carrierwave+fog for this. As the app is hosted on heroku, the pictures will need to be stored on amazon ...
0
votes
1answer
154 views
Heroku taking too much time to upload to S3 (carrierwave and fog)
I have a Rails app, when the user calls one action from the web the heroku app generates a random image, upload that image to S3 and the returns to the user the public url of that image (stored in ...
7
votes
1answer
1k views
undefined method `fog_host='
When i'm trying to run my application, i'm getting the following error:
config/initializers/carrierwave.rb:4: undefined method `fog_host=' for
CarrierWave::Uploader::Base:Class (NoMethodError)
...
1
vote
3answers
602 views
Fog::Storage::Rackspace::NotFound error when using Carrierwave to upload to Rackspace
Everyone: I already searched the error before I posted this to Stackoverflow, so no need to point me to this: groups.google.com/forum/?fromgroups=#!topic/carrierwave/ It's not the same problem.
I'm ...
0
votes
1answer
49 views
Rails carrierwave error
I'm using carrierwave and fog to upload files in my app. I upgraded all my gems and now receive this error wrong number of arguments (2 for 1)
<%= link_to ...
0
votes
0answers
70 views
Migrating carrierwave fog uploads from AWS to RackSpace
I've currently got carrierwave/fog uploads to AWS S3 storage. What I'd like to do is reupload all of the active uploads to RackSpace. Is there a way to make this migration happen?
Ruby: 1.9.3
Rails: ...
3
votes
1answer
754 views
Rubber 2 (fog) and keypair error
Hi I am trying out rubber gem with ec2 but having some issues getting through the quick start section. For some reason Fog under rubber is not finding the keypair. Here is the detail:
in irb (the ...
0
votes
1answer
192 views
config.fog_host does not works fine for me with cdn's in rails 3.1
I have this in my fog.rb
CarrierWave.configure do |config|
config.fog_credentials = {
:provider => 'AWS',
:aws_access_key_id => 'key',
:aws_secret_access_key ...
4
votes
1answer
298 views
Dynamic EC2 Bucket Options for Fog/Carrierwave
I have a Rails3 application which uses Carrierwave and Fog to store data to Amazon's S3. This application I am building requires that I allow each user to have their own secure EC2 bucket. The ...
3
votes
1answer
179 views
How to use Fog (rubygem) to only start/stop the aws ec2 instance, but not terminate?
I've ec2 instance at aws as EBS store thats why I can start/stop the server.
When I start it again, the data is persisted between restarts.
But how to use fog or other ruby gems to automate this?
1
vote
1answer
233 views
CarrierWave crop file on Cloud (fog)
I am trying to crop an image with CarrierWave and put it on the cloud fog(cloud_files). How can I do this? Will I have to download a copy as a tempfile, crop that, and then upload it back?
If the ...
2
votes
1answer
557 views
Images not associated properly (carrier wave, fog, heroku)
Trying to add carrier wave based image uploading to my user model. This works locally in development. On heroku, the image is uploaded to my s3 bucket, but never displayed. In the console, it looks ...
0
votes
2answers
618 views
Uploads silently failing/pausing with new carrierwave_direct gem when uploading to s3
i am having a small problem uploading files to s3 with new carrierwave_direct gem
I have followed the instructions for installing and setting up carrierwave_direct, however when i try to upload to ...
2
votes
1answer
782 views
Rails, CarrierWave, and Fog - Ignore Missing Files on Destroy or Overwrite
What is the correct way in Rails w CarrierWave using Fog to delete/destroy records when there are missing attachments/images?
I am trying to clean up a few records after a missing import of images to ...
2
votes
0answers
383 views
Strange Behavior with Carrierwave Url Generation
I'm stumped on this one. I'm using Carrierwave with Fog to handle thumbnail uploads for an app hosted on Heroku and the image urls don't seem to be generating properly.
I've tried setting up my ...
4
votes
2answers
379 views
What gem should I use to work with AWS
I'm currently writing an application in ruby on rails that uses AWS. I see two options for gems, aws-sdk and fog. Fog seems to support almost all of the AWS services except for sns(which I wanted to ...
3
votes
1answer
753 views
Granular 'public' settings on uploaded files with Fog and Carrierwave
I am creating a rails app that lets an administrator upload photos that are optionally publicly displayed. For the upload / storage process I am using the Carrierwave gem along with the Fog gem and ...