Displaying 3 results from an estimated 3 matches for "db_system".
Did you mean:
as_system
2007 Dec 13
0
acts_as_attachment -> attachment_fu, db_system -> file_system
Hi
I currently have an app running with acts_as_attachment and db_system. I
would like to convert it to attachment_fu and file_system.
Has anyone done this? Are there any pitfalls? I am aware that the change
from acts_as_attachment to attachment_fu is just a matter of replacing the
plugins, but I am wondering about the switch from db_system to file_system.
Is it as eas...
2006 Sep 08
4
Does acts_as_attachment :storage => :db_system work?
I found the post about needing to install acts_as_attachement_1_1_6 if
you are not on edge rails. But I am having trouble getting db_system
storage to work. As far as I can tell in from the database, things are
working, but I don''t see how my model table hooks up with the db_files
table so I am having trouble altering the image_tag from the tutorial
(http://weblog.techno-weenie.net/articles/acts_as_attachment) so that
it pulls...
2007 Sep 18
2
Making attachment_fu polymorphic
...hment_fu
model with
## has_attachment :storage => :file_system
## include Attachment_kung
## Make sure Attachment_kung is *last*, or you will not be able
to display your attachments. Also,
## I have not tested Attachment_kung with :storage => :s3
or :storage => :db_system. I *ought* to
## work, but one never knows until one tries. Sadly, at present,
Attachment_kung has the limitation
## that it can only handle *one* storage system at a time. Maybe
in a further iteration it will let
## one use both the file_system and s3 at the same time. Maybe.
## 2...