Just for clarification, this will not prevent the file being uploaded
into the server's memory but it will prevent it from being saved to
the file system.

On Apr 17, 9:16 am, Rick <[email protected]> wrote:
> How are the files loaded onto the server?
>
> For example, if they are coming in from users as email attachments you
> could use attachment_fu to set the maximum size in the model:
>
> class Photo < ActiveRecord::Base
>   has_attachment :storage => :file_system,
>     .
>     .
>     :size => 1..5.megabytes
>   validates_as_attachment
> end
>
> (paperclip probably has similar functionality but I have not personal
> experience with it)
>
> On Apr 17, 3:45 am, Pål Bergström <[email protected]>
> wrote:
>
> > I get the file size of images by
>
> > imgmb = File.size("#{RAILS_ROOT}/..../#{file}")
>
> > But that's when I have the file on the server. Can you test that before
> > in order to stop the file upload if it's really heavy? How does that
> > work?
> > --
> > Posted viahttp://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to