We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In sitemap.rb when i add: protocol "https" and generate sitemap, i get this:
Generating sitemap... rake aborted! NoMethodError: undefined method protocol' for #<DynamicSitemaps::Generator:0x007fef3c755548> /home/anubix/projects/flies/config/sitemap.rb:3:ingenerate'
protocol' for #<DynamicSitemaps::Generator:0x007fef3c755548> /home/anubix/projects/flies/config/sitemap.rb:3:in
Most of websites need https urls in sitemap, please check it, thanks.
The text was updated successfully, but these errors were encountered:
See #43
Sorry, something went wrong.
Actually the method protocol= doesn't exist in any branch.
protocol=
You can't assign the protocol "Gem wide" but Sitemap specific.
Then all you have to do is point your gem to master
gem 'dynamic_sitemaps', github: 'lassebunk/dynamic_sitemaps', branch: 'master'
and in config/sitemap.rb add the following line at the top
config/sitemap.rb
protocol "https"
No branches or pull requests
In sitemap.rb when i add:
protocol "https" and generate sitemap, i get this:
Generating sitemap...
rake aborted!
NoMethodError: undefined method
protocol' for #<DynamicSitemaps::Generator:0x007fef3c755548> /home/anubix/projects/flies/config/sitemap.rb:3:in
generate'Most of websites need https urls in sitemap, please check it, thanks.
The text was updated successfully, but these errors were encountered: