Using CarrierWave and Amazon S3. CarrierWave Configuration:
CarrierWave.configure do |config| config.ensure_multipart_form = false config.permissions = 0777 config.s3_access_key_id = 'secret_access_key_id' config.s3_secret_access_key = 'secret_access_key' config.s3_bucket = 'backet_name' end
I get a resolved error trying to read from the tmp directory when booting to s3.
Errno::EACCES Permission denied - D:/MyDirectory/public/uploads/tmp/20110211-1021-3252-6545/my_file.txt.
What's wrong?
source share