Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

not able to upload and save files from my up to Heroku Server

I am trying to upload an image through the wen interface. I am using CarrierWave. It works just fine on my local window machine. On heroku i get the following errore message: Errno::EACCES (Permission denied - /app/bboads/tmp):

like image 844
user663778 Avatar asked Dec 02 '25 18:12

user663778


1 Answers

I think you are trying to upload the picture to your public/ folder. Heroku doesn't let you do this. You need to create a bucket on Amazon's S3 service and upload to that.

Here is a similar q/a

like image 60
thenengah Avatar answered Dec 07 '25 03:12

thenengah