Tagged Questions
0
votes
1answer
35 views
How to work with Dragonfly's before_serve block to watermark pdf files
I'm trying to serve PDF files that are watermarked with a users email address and timestamp at the time of downloading a file using the dragonfly gem and I'm having a bit of trouble working with the ...
1
vote
0answers
56 views
Duplicate record with Dragonfly gem image in Rails
How do I duplicate an ActiveRecord object with a dragonfly image?
I have the following.
model:
class Event < ActiveRecord::Base
image_accessor :thumbnail
attr_accessible :thumbnail, ...
0
votes
1answer
105 views
Dragonfly - Uploaded images not displayed
I am using dragonfly with jruby and apache tomcat to upload images. I am trying to display images that i am uplaoding dynamically using profile_picture.thumb('30x30#').url
When I run the app using ...
5
votes
1answer
1k views
Heading into 2013, should I go with Dragonfly or Paperclip or Carrierwave? [closed]
I am just another average joe hoping to jump onto the social network bandwagon. I'd like to know which photo uploading/resizing gem I should use for users of my app. It would be great if you could ...
2
votes
1answer
141 views
Rails public/system for user files
Both Rails gems DragonFly and Paperclip use public/system folder to store uploaded files.
As far as I know this folder is accessible by everybody - at least the root files, 404.html or others.
How ...
0
votes
1answer
154 views
DragonFly attachment and BackBone.js
I'm trying to attach an image to a model using BackBone.js, in Rails all works as expected.
But with BackBone.js I don't get how to attach an image and for example show it in the show template.
as ...
0
votes
0answers
138 views
wrong URLs deploying to a subdirectory
in my view I have:
<a href="<%= @project.file.url %>"><%= @project.file.name %></a>
locally, in development, all works fine and I can download the file. But on my VPS in ...
0
votes
1answer
241 views
File uploading with Dragonfly, impossible to access images after upload (Rails 3)
I'm trying to make a multiple drag and drop upload file system with Rails 3 and Dragonfly (or anything that would work actually)
I'm at the point where my file comes in my controller through the ...
1
vote
1answer
254 views
How to?: Mongoid 3 and Dragonfly configuration
I am trying to upgrade my app to mongoid version 3. In my dragonfly initializer I used to have this:
app.configure_with(:imagemagick)
app.configure_with(:rails) do |c|
c.datastore = ...
0
votes
0answers
76 views
Is there anyway to use Dragonfly without Active Record in Rails 3?
Is there anyway to use Dragonfly without an ORM such as Active Record in Rails 3?
I'm developing a Theme Editor that creates and destroy folders, upload images, etc. Specially about the image ...
1
vote
1answer
873 views
Rails 3 and RefineryCMS - Dragonfly::Shell::CommandFailed in Refinery::Admin::ImagesController#create
Looks like multiple people have this same/similar issues and there are a couple of reported fixes for it that I've found on SO here . Unfortunately, they are not working for me. I'm running MacOS ...
0
votes
1answer
235 views
Rails 3 Dragonfly uid of attachment is correct but the file iself is nil
Im using Dragonfly and Amazon s3 for the image uploads. For some reason when I upload a picture, it saves to the right folder on amazon, and the uid is the right path, but it is not showing up!
Every ...
1
vote
1answer
154 views
Possible to configure Dragonfly-Gem w/Rails3 to force convert all uploads to image/jpeg?
I've been reading through the DragonFly docs and I think the before_serve clause of DragonFly's configuration is probably where I need to focus, perhaps by setting up some sort of
convert to jpeg if ...
7
votes
4answers
1k views
refinerycms image not loading - dragonfly error
I'm working on developing a refinerycms rails app that was working good locally and now i've moved it to my VPS and I was having issues with images that i uploaded through refinerycms not loading and ...
2
votes
1answer
157 views
Dragonfly mass-assign error
I've added an "avatar" to my user model (Devise) and am getting the error Can't mass-assign protected attributes: avatar
In my user model I have added:
attr_accessible :avatar_uid, :avatar_name
...
2
votes
1answer
421 views
How to resize image before_save with dragonfly?
In my model i have:
attr_accessible :photo
image_accessor :photo
before_save :resize_image
def resize_image
self.photo = self.photo.process(:resize, '40x40')
end
but after save it removes my ...
1
vote
1answer
705 views
Change local storage location in refinerycms for uploaded files
I'm using refinerycms 1.0.9 and I'd like to change the default location where dragonfly saves the files.
Here is my dragonfly.rb in config/initializers:
require 'dragonfly'
app = ...
1
vote
1answer
397 views
Dragonfly: How to set max image size?
How to set max image size and weight/height using Dragonfly? Max size will be different for different models, so i would like to set it in model lvl.
1
vote
1answer
1k views
Assigning Image from URL with Dragonfly
I'm using Dragonfly for handling images on a Rails 3.1 app. I'm struggling with assigning images to a model via the url.
I have this working fine in a form:
<%= form_for [@word, @game, @picture], ...
0
votes
1answer
534 views
Capybara spec failing when using attach_file with Dragonfly
I'm writing a spec for a form page which uses DragonFly gem to handle attachments, here is my spec (relevant part of it)
fill_in "Subject", :with => 'My message'
fill_in "Title", :with => 'My ...
5
votes
1answer
927 views
multiple image upload with dragonfly
i was trying for multiple image upload with dragonfly in rails3. i searched for some tutorials, but couldn't find any. i found a tutorial for multiple image upload with Carrierwave, but couldnt find ...
31
votes
3answers
10k views
Rails 3 paperclip vs carrierwave vs dragonfly vs attachment_fu
I'm working on upgrading a Rails 2.3.11, Ruby 1.9.2 app to Rails 3.0.10, and attachment_fu no longer works.
I'm looking at changing to paperclip, carrierwave, or dragonfly for file uploads, or maybe ...
5
votes
1answer
340 views
Uploading image to Rails server (using Dragonfly) from iPhone
I am trying to upload an image from iPhone to Rails, which is configured with Dragonfly gem. The problem is I keep getting this error:
Dragonfly::TempObject must be initialized with a String, a ...
3
votes
2answers
981 views
Dragonfly gem - default images?
I'm using Dragonfly and would like to have a default image that resizes in the same way present thumbnails do.
I currently have the following code, but when Dragonfly uses the fetch_file method, it ...
1
vote
0answers
168 views
How ContentFlow scales the images?
Have been using ContentFlow as a JS image gallery.
I have only one version of image files sized to 1000x750 landscapes and 600x800 portraits and none exceeds 300kb.
i have set maxItemSize:400;
When ...
1
vote
2answers
704 views
Move RefineryCMS from Local to Production
We decided to try using RefineryCMS for our current project and have run into some issues.
We began the project in a local development environment. The deadline is very quickly approaching. At first, ...
1
vote
0answers
629 views
rack ssl and nginx configuration
Hi I am trying to use rack ssl with my nginx. Everything works fine on all pages apart from my statics dragonfly images which is serve as a proxy via nginx. Here is that part of the config (ofc when ...
0
votes
2answers
892 views
Define Dragonfly specific path for S3 Datastore
I need to define an specific structure path for storing my files in S3.
Example:
Instead of
'bucket_name/2010/12/23/127/43/2345/File.jpg'
I need
...
