TypeError (no implicit conversion of Array into String) Rails App on Heroku Using AWS
I am following Michael Hart's Ruby on Rails Tutorial and am stuck on Chapter 13. I am unable to post images on my Rails app deployed on Heroku, but images work just fine on the development server. My carrier_wave.rb originally looked like
if Rails.env.production?
CarrierWave.configure do |config|
config.fog_credentials = {
# Configuration for Amazon S3
:provider => 'AWS',
:aws_access_key_id => ENV['S3_ACCESS_KEY'],
:aws_secret_access_key => ENV['S3_SECRET_KEY'],
:region => ENV['S3_REGION']
}
config.fog_directory = ENV['S3_BUCKET']
end
end
When my carrier_wave.rb looked like this I was getting an error that looked like this
:reason_phrase => "Forbidden"
After searching around on SO I found this post, and have changed my carrier_wave.rb to look like this
CarrierWave.configure do |config|
config.root = Rails.root.join('tmp') # adding these...
config.cache_dir = 'carrierwave' # ...two lines
config.fog_credentials = {
:provider => 'AWS', # required
:s3_access_key_id => ENV['S3_ACCESS_KEY'], # required
:s3_secret_access_key => ENV['S3_SECRET_KEY'], # required
:region => 'us-east-2', # optional, defaults to 'us-east-1'
:host => 's3.example.com', # optional, defaults to nil
:endpoint => 'https://s3.example.com:8080' # optional, defaults to nil
}
config.fog_directory = ENV['S3_Bucket'] # required
config.fog_public = false # optional, defaults to true
config.fog_attributes = {'Cache-Control'=>'max-age=315576000'} # optional, defaults to {}
end
Now I'm receiving the error
TypeError (no implicit conversion of Array into String)
I don't know if this is closer to working than the original carrier_wave.rb
My IAM user has 'AmazonS3FullAccess' as a permission. I have even tried setting the S3 Bucket to public access, but to no success. Any help or advice would be appreciated.
ruby-on-rails ruby amazon-web-services heroku railstutorial.org
add a comment |
I am following Michael Hart's Ruby on Rails Tutorial and am stuck on Chapter 13. I am unable to post images on my Rails app deployed on Heroku, but images work just fine on the development server. My carrier_wave.rb originally looked like
if Rails.env.production?
CarrierWave.configure do |config|
config.fog_credentials = {
# Configuration for Amazon S3
:provider => 'AWS',
:aws_access_key_id => ENV['S3_ACCESS_KEY'],
:aws_secret_access_key => ENV['S3_SECRET_KEY'],
:region => ENV['S3_REGION']
}
config.fog_directory = ENV['S3_BUCKET']
end
end
When my carrier_wave.rb looked like this I was getting an error that looked like this
:reason_phrase => "Forbidden"
After searching around on SO I found this post, and have changed my carrier_wave.rb to look like this
CarrierWave.configure do |config|
config.root = Rails.root.join('tmp') # adding these...
config.cache_dir = 'carrierwave' # ...two lines
config.fog_credentials = {
:provider => 'AWS', # required
:s3_access_key_id => ENV['S3_ACCESS_KEY'], # required
:s3_secret_access_key => ENV['S3_SECRET_KEY'], # required
:region => 'us-east-2', # optional, defaults to 'us-east-1'
:host => 's3.example.com', # optional, defaults to nil
:endpoint => 'https://s3.example.com:8080' # optional, defaults to nil
}
config.fog_directory = ENV['S3_Bucket'] # required
config.fog_public = false # optional, defaults to true
config.fog_attributes = {'Cache-Control'=>'max-age=315576000'} # optional, defaults to {}
end
Now I'm receiving the error
TypeError (no implicit conversion of Array into String)
I don't know if this is closer to working than the original carrier_wave.rb
My IAM user has 'AmazonS3FullAccess' as a permission. I have even tried setting the S3 Bucket to public access, but to no success. Any help or advice would be appreciated.
ruby-on-rails ruby amazon-web-services heroku railstutorial.org
1
try changing this lineconfig.root = Rails.root.join('tmp').to_s
– xploshioOn
Nov 27 '18 at 1:39
1
Where's the stacktrace? It should tell you exactly what line is causing the problem. I agree with @xploshioOn that it's likely yourconfig.root
line because it returns aPathname
object. But it may be that you need a proc. Check this GitHub issue for more.
– anothermh
Nov 27 '18 at 3:52
add a comment |
I am following Michael Hart's Ruby on Rails Tutorial and am stuck on Chapter 13. I am unable to post images on my Rails app deployed on Heroku, but images work just fine on the development server. My carrier_wave.rb originally looked like
if Rails.env.production?
CarrierWave.configure do |config|
config.fog_credentials = {
# Configuration for Amazon S3
:provider => 'AWS',
:aws_access_key_id => ENV['S3_ACCESS_KEY'],
:aws_secret_access_key => ENV['S3_SECRET_KEY'],
:region => ENV['S3_REGION']
}
config.fog_directory = ENV['S3_BUCKET']
end
end
When my carrier_wave.rb looked like this I was getting an error that looked like this
:reason_phrase => "Forbidden"
After searching around on SO I found this post, and have changed my carrier_wave.rb to look like this
CarrierWave.configure do |config|
config.root = Rails.root.join('tmp') # adding these...
config.cache_dir = 'carrierwave' # ...two lines
config.fog_credentials = {
:provider => 'AWS', # required
:s3_access_key_id => ENV['S3_ACCESS_KEY'], # required
:s3_secret_access_key => ENV['S3_SECRET_KEY'], # required
:region => 'us-east-2', # optional, defaults to 'us-east-1'
:host => 's3.example.com', # optional, defaults to nil
:endpoint => 'https://s3.example.com:8080' # optional, defaults to nil
}
config.fog_directory = ENV['S3_Bucket'] # required
config.fog_public = false # optional, defaults to true
config.fog_attributes = {'Cache-Control'=>'max-age=315576000'} # optional, defaults to {}
end
Now I'm receiving the error
TypeError (no implicit conversion of Array into String)
I don't know if this is closer to working than the original carrier_wave.rb
My IAM user has 'AmazonS3FullAccess' as a permission. I have even tried setting the S3 Bucket to public access, but to no success. Any help or advice would be appreciated.
ruby-on-rails ruby amazon-web-services heroku railstutorial.org
I am following Michael Hart's Ruby on Rails Tutorial and am stuck on Chapter 13. I am unable to post images on my Rails app deployed on Heroku, but images work just fine on the development server. My carrier_wave.rb originally looked like
if Rails.env.production?
CarrierWave.configure do |config|
config.fog_credentials = {
# Configuration for Amazon S3
:provider => 'AWS',
:aws_access_key_id => ENV['S3_ACCESS_KEY'],
:aws_secret_access_key => ENV['S3_SECRET_KEY'],
:region => ENV['S3_REGION']
}
config.fog_directory = ENV['S3_BUCKET']
end
end
When my carrier_wave.rb looked like this I was getting an error that looked like this
:reason_phrase => "Forbidden"
After searching around on SO I found this post, and have changed my carrier_wave.rb to look like this
CarrierWave.configure do |config|
config.root = Rails.root.join('tmp') # adding these...
config.cache_dir = 'carrierwave' # ...two lines
config.fog_credentials = {
:provider => 'AWS', # required
:s3_access_key_id => ENV['S3_ACCESS_KEY'], # required
:s3_secret_access_key => ENV['S3_SECRET_KEY'], # required
:region => 'us-east-2', # optional, defaults to 'us-east-1'
:host => 's3.example.com', # optional, defaults to nil
:endpoint => 'https://s3.example.com:8080' # optional, defaults to nil
}
config.fog_directory = ENV['S3_Bucket'] # required
config.fog_public = false # optional, defaults to true
config.fog_attributes = {'Cache-Control'=>'max-age=315576000'} # optional, defaults to {}
end
Now I'm receiving the error
TypeError (no implicit conversion of Array into String)
I don't know if this is closer to working than the original carrier_wave.rb
My IAM user has 'AmazonS3FullAccess' as a permission. I have even tried setting the S3 Bucket to public access, but to no success. Any help or advice would be appreciated.
ruby-on-rails ruby amazon-web-services heroku railstutorial.org
ruby-on-rails ruby amazon-web-services heroku railstutorial.org
edited Nov 27 '18 at 0:23
Sagar Pandya
7,92221933
7,92221933
asked Nov 27 '18 at 0:16
twoshedstwosheds
12
12
1
try changing this lineconfig.root = Rails.root.join('tmp').to_s
– xploshioOn
Nov 27 '18 at 1:39
1
Where's the stacktrace? It should tell you exactly what line is causing the problem. I agree with @xploshioOn that it's likely yourconfig.root
line because it returns aPathname
object. But it may be that you need a proc. Check this GitHub issue for more.
– anothermh
Nov 27 '18 at 3:52
add a comment |
1
try changing this lineconfig.root = Rails.root.join('tmp').to_s
– xploshioOn
Nov 27 '18 at 1:39
1
Where's the stacktrace? It should tell you exactly what line is causing the problem. I agree with @xploshioOn that it's likely yourconfig.root
line because it returns aPathname
object. But it may be that you need a proc. Check this GitHub issue for more.
– anothermh
Nov 27 '18 at 3:52
1
1
try changing this line
config.root = Rails.root.join('tmp').to_s
– xploshioOn
Nov 27 '18 at 1:39
try changing this line
config.root = Rails.root.join('tmp').to_s
– xploshioOn
Nov 27 '18 at 1:39
1
1
Where's the stacktrace? It should tell you exactly what line is causing the problem. I agree with @xploshioOn that it's likely your
config.root
line because it returns a Pathname
object. But it may be that you need a proc. Check this GitHub issue for more.– anothermh
Nov 27 '18 at 3:52
Where's the stacktrace? It should tell you exactly what line is causing the problem. I agree with @xploshioOn that it's likely your
config.root
line because it returns a Pathname
object. But it may be that you need a proc. Check this GitHub issue for more.– anothermh
Nov 27 '18 at 3:52
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53490994%2ftypeerror-no-implicit-conversion-of-array-into-string-rails-app-on-heroku-usin%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53490994%2ftypeerror-no-implicit-conversion-of-array-into-string-rails-app-on-heroku-usin%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
try changing this line
config.root = Rails.root.join('tmp').to_s
– xploshioOn
Nov 27 '18 at 1:39
1
Where's the stacktrace? It should tell you exactly what line is causing the problem. I agree with @xploshioOn that it's likely your
config.root
line because it returns aPathname
object. But it may be that you need a proc. Check this GitHub issue for more.– anothermh
Nov 27 '18 at 3:52