Hi, I am using image uploading by using attachment_fu. I am able tp upload the images by using attachment_fu. I have seen that images are uploading in ''public/#{table_name}/0000'' directory. My question is if my images count becomes greater that 10000 still my image uploading directory will be same? or it will change? Any help appreciated. Thanks, Tushar -- Posted via http://www.ruby-forum.com/.
The directory where the image is stored will eventually change when you have uploaded enough of them. But you don''t really have to worry about that as long as you work through the application to reference the files. It''s generally called "ID partitioning", or something like that to avoid hitting limits on some file systems for the sheer number of directory entries allowed. -- Posted via http://www.ruby-forum.com/.