I am using CarrierWave to store files on Dropbox.I have successfully integrated everything. Files are being successfully stored on Dropbox. The issue is CarrierWave still storing files on local machine app folder. And there i am getting error
Permission denied @ unlink_internal - C:/Users/name/Desktop/app_name/public
Previously i had this in my configuration file
class AvatarUploader < CarrierWave::Uploader::Base
storage :file
end
After that i changed it to:
class AvatarUploader < CarrierWave::Uploader::Base
storage :dropbox
end
I am using windows 8 and i am in development mode. I am keen to know why files are still being stored locally despite changing storage to dropbox. See here Error Screen