- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
长期以来一直试图搜索此错误的原因,但似乎找不到任何...
所以我有一个 rails 应用程序,我使用carrierwave 上传图片。我还想在我的应用程序中使用 Amazon S3 进行文件上传存储。
最初在开发应用程序时,我允许文件上传在 :file 上,即
image_uploader.rb
# Choose what kind of storage to use for this uploader:
storage :file
# storage :fog
# Choose what kind of storage to use for this uploader:
# storage :file
storage :fog
Excon::Errors::Forbidden in UsersController#update
Expected(200) <=> Actual(403 Forbidden)
request => {:connect_timeout=>60, :headers=>{"Content-Length"=>74577, "x-amz- acl"=>"private", "Content-Type"=>"image/png", "Date"=>"Sun, 26 Feb 2012 10:00:43 +0000", "Authorization"=>"AWS AKIAJOCDPFOU7UTT4HOQ:8ZnOy7X71nQAM87yraSI24Y5bSw=", "Host"=>"s3.amazonaws.com:443"}, :instrumentor_name=>"excon", :mock=>false, :read_timeout=>60, :retry_limit=>4, :ssl_verify_peer=>true, :write_timeout=>60, :host=>"s3.amazonaws.com", :path=>"/uploads//uploads%2Fuser%2Favatar%2F1%2Fjeffportraitmedium.png", :port=>"443", :query=>nil, :scheme=>"https", :body=>"\x89PNG\r\n\x1A\n\x00\x00\x00\rIHDR\x00\x00\x00\xC2\x00\x00\x00\xC3\b\x06\x00\x00\x00\xD0\xBD\xCE\x94\x00\x00\nCiCCPICC Profile\x00\x00x\x01\x9D\x96wTSY\x13\xC0\xEF{/\xBD\xD0\x12B\x91\x12z\rMJ\x00\x91\x12z\x91^E%$\
...
# The code you see above to the far right repeats itself a LOT
...
1@\x85\xB5\t\xFC_y~\xA6=:\xB2\xD0^\xBB~i\xBB\x82\x8F\x9B\xAF\xE7\x04m\xB2i\xFF\x17O\x94S\xF7l\x87\xA8&\x00\x00\x00\x00IEND\xAEB`\x82", :expects=>200, :idempotent=>true, :method=>"PUT"}
response => #<Excon::Response:0x007fc88ca9f3d8 @body="<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Code>AccessDenied</Code><Message>Access Denied</Message><RequestId>8EFA56C0DDDC8878</RequestId><HostId>1OxWXppSSUq1MFjQwvnFptuCM3gKOuKdlQQyVSEgvzzv4Aj+r2hSFM2UUw2NYyrR</HostId></Error>", @headers={"x-amz-request-id"=>"8EFA56C0DDDC8878", "x-amz-id-2"=>"1OxWXppSSUq1MFjQwvnFptuCM3gKOuKdlQQyVSEgvzzv4Aj+r2hSFM2UUw2NYyrR", "Content-Type"=>"application/xml", "Transfer-Encoding"=>"chunked", "Date"=>"Sun, 26 Feb 2012 10:00:47 GMT", "Connection"=>"close", "Server"=>"AmazonS3"}, @status=403>
app/controllers/users_controller.rb:39:in `update'
{"utf8"=>"✓",
"_method"=>"put",
"authenticity_token"=>"DvADD1vYpCLcghq+EIOwVSjsfmAWCHhtA3VI5VGD/q8=",
"user"=>{"avatar"=>#<ActionDispatch::Http::UploadedFile:0x007fc88cde76f8
@original_filename="JeffPortraitMedium.png",
@content_type="image/png",
@headers="Content-Disposition: form-data; name=\"user[avatar]\";
filename=\"JeffPortraitMedium.png\"\r\nContent-Type: image/png\r\n",
@tempfile=#<File:/var/folders/vg/98nv58ss4v7gcbf8px_8dyqc0000gq/T/RackMultipart20120226- 19096-1ppu2sr>>,
"remote_avatar_url"=>"",
"name"=>"Jeff Lam ",
"email"=>"email@gmail.com",
"user_bio"=>"Tester Hello",
"shop"=>"1"},
"commit"=>"Update Changes",
"id"=>"1"}
def update
@user = User.find(params[:id])
if @user.update_attributes(params[:user])
redirect_back_or root_path
flash[:success] = "Your have updated your settings successfully."
else
flash.now[:error] = "Sorry! We are unable to update your settings. Please check your fields and try again."
render 'edit'
end
end
# encoding: utf-8
class ImageUploader < CarrierWave::Uploader::Base
# Include RMagick or MiniMagick support:
# include CarrierWave::RMagick
include CarrierWave::MiniMagick
# Choose what kind of storage to use for this uploader:
# storage :file
storage :fog
# Override the directory where uploaded files will be stored.
# This is a sensible default for uploaders that are meant to be mounted:
def store_dir
"uploads/#{model.class.to_s.underscore}/#{mounted_as}/#{model.id}"
end
# Provide a default URL as a default if there hasn't been a file uploaded:
# def default_url
# "/images/fallback/" + [version_name, "default.png"].compact.join('_')
# end
# Process files as they are uploaded:
# process :scale => [200, 300]
#
# def scale(width, height)
# # do something
# end
# Create different versions of your uploaded files:
version :thumb do
process resize_to_fill: [360, 250]
end
version :cover_photo_thumb do
process resize_to_fill: [1170, 400]
end
version :event do
process resize_to_fill: [550, 382]
end
version :product do
process resize_to_fit: [226, 316]
end
# Add a white list of extensions which are allowed to be uploaded.
# For images you might use something like this:
def extension_white_list
%w(jpg jpeg gif png)
end
# Override the filename of the uploaded files:
# Avoid using model.id or version_name here, see uploader/store.rb for details.
# def filename
# "something.jpg" if original_filename
# end
# fix for Heroku, unfortunately, it disables caching,
# see: https://github.com/jnicklas/carrierwave/wiki/How-to%3A-Make-Carrierwave-work-on-Heroku
def cache_dir
"#{Rails.root}/tmp/uploads"
end
end
CarrierWave.configure do |config|
config.fog_credentials = {
:provider => 'AWS', # required
:aws_access_key_id => 'ACCESS_KEY', # required
:aws_secret_access_key => 'SECRET_ACCESS_KEY/ZN5SkOUtOEHd61/Cglq9', # required
:region => 'Singapore' # optional, defaults to 'us-east-1'
}
config.fog_directory = 'ruuva/' # required
config.fog_public = false # optional, defaults to true
end
最佳答案
首先确保您使用正确的凭据,不要设置自定义区域和自定义目录(在默认区域中免费创建一个假存储桶)
那么我认为您没有为该地区使用正确的名称。尝试像这样设置您的区域:
:region => 'ap-southeast-1'
关于ruby-on-rails - 使用 s3 和雾上传 Carrierwave,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9452241/
我已经编写了一个脚本来通过我的 Rackspace 云文件容器递归下载并检索每个文件的副本,所以我有一个本地备份以防 Rackspace 被 meteor 和/或 hindenbugs 击中。 但是,
我有一个问题,雾在使用 OpenGL 的桌面程序 (PC) 上的工作方式与预期相同,但相同的雾在 Android 设备上的工作方式与在 Android 设备上的工作方式不同(使用 OpenGL ES)
我正在尝试: 我正在构建一个包含地形的轻量级 GIS 应用程序。我想补充的一件事是大气阴霾。 我当前的代码: (请原谅我的代码,我有多个场景) fogColor = new THREE.Color
如何在不下载的情况下获取雾中 s3 对象的大小? 例如: connection.get_object(dir.key, latest_backup.key).body.size 要求我先下载对象。 如
我有 connection = Fog::Storage.new(fog_config) bucket = connection.directories.get(bucket_name
我在我的网站中使用 fog 和 carrierwave 。但是图像加载非常非常缓慢。 然后,我想使用CDN加快图像加载速度。 我已按照本教程为图像创建CDN: http://maketecheasie
我在尝试将 S3 服务与雾和 Jquery 文件上传 (https://github.com/blueimp/jQuery-File-Upload) 一起使用时遇到了这个问题 错误 Excon::Er
我正在尝试使用 Sprite 制作一个粒子系统,但问题是 Sprite 似乎不响应“雾”参数(即它不会随着距离而消失)。我可以使用粒子系统而不是使用许多 Sprite (因为粒子系统确实尊重雾参数),
我有一个使用 Carrierwave 进行文件上传的 Rails 应用程序。它一直运行良好,但我想开始使用 Amazon S3 进行图像存储。我收到此错误: ArgumentError ( is no
嗨,我正在尝试使用 ec2 的rubber gem,但在快速入门部分遇到一些问题。由于某种原因,橡胶下的雾没有找到 key 对。这是详细信息: 在 irb 中(这里的路径是我的 Rubber.yml
更新内容 我的设置现在如下: #Carrierwave Initializer CarrierWave.configure do |config| config.fog_credentials
我目前收到以下错误:Excon::Errors::SocketError - Broken pipe (Errno::EPIPE)上传大于 150kb 的图像时。 150kb 以下的图像正常工作。研究
我正在尝试将我的 Rails 4 项目连接到 Azure,我使用载波和雾来管理和存储图像。 这是我在启动服务器或控制台时遇到的错误: /Users/giulio/.rvm/gems/ruby-2.2.
我想从用户那里收集 HTML5 录音并将它们存储在 S3 中。我正在使用名为 MediaStreamRecorder.js 的 WebRTC 使用 javascript 资源进行浏览器内音频和视频录制
我是一名优秀的程序员,十分优秀!