Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In our latest application we need to process some uploads, I've worked with paperclip before and everything just works! but we're giving carrierwave a try, it looks promising but, I can't find how to validate the size of an attachment, it seems like the documentation doesn't have any information about it, should we add it manually to the model via a custom validator?

Thanks in advance!

share|improve this question
3  
It seems like they don't have it (yet) Just added this custom validator to my model, => gist.github.com/795665 – jpemberthy Jan 25 '11 at 21:08
i was working with the above solution a bit myself. just be aware that that will only validate the size of the image after it has been stored in the cache. in terms of client side validation i still am looking myself – Will Ayd Mar 8 '11 at 3:07
If you want to secure your site from uploading ridiculously large files, CarrierWave validations won't help, instead learn how to secure server‌​. CarrierWave file size validations could be useful if you want to have different size limits for videos and images or you want to validate minimum file size. – skalee Jun 3 '12 at 11:18

1 Answer

up vote 10 down vote accepted

There is a Wiki entry on github: https://github.com/jnicklas/carrierwave/wiki/How-to%3A-Validate-attachment-file-size

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.