Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I'm using carrierwave and I want to change the directory where images are stored.

Right now the image URL is /uploads/modelname/image/51/nameoffile.jpg

the store_dir in ImageUploader is

def store_dir
    "uploads/#{model.class.to_s.underscore}/#{mounted_as}/#{model.id}"
  end

I definitely do not want the modelname to show Is there an accepted ideal path where images should be stored on heroku?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.8k views
Welcome To Ask or Share your Answers For Others

1 Answer

Heroku doesn't allow uploads to their servers. You need to use another storage medium, like Amazon's S3.

I'm actually using Parse's (www.parse.com) API to store images on their solution. But it depends how you need access to your images.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...