I have:
- heroku
- rails 3
- carrierwave
On localhost uploading works fine. But it doesnt work on heroku. My logs are:
Completed 500 Internal Server Error in 13ms
Errno::EACCES (Permission denied - /app/public/uploads/tmp):
app/controllers/users_controller.rb:73:in `update'
cache: [POST /users/2] invalidate, pass
My 73 line is:
if @user.update_attributes(params[:user])
Tryed to make this om local computer and push to heroku and failed
What else can I do?