I just wanted to know how one would go about uploading a remote file url using Carrierwave in the Rails console.
I tried the following without any luck. I presume it
I was facing the same problem. and the issue might be http is redirecting to https. So I replaced them using gsub as follows:
image.remote_image_url = remote_image_url.gsub('http://','https://') image.save!
this should most probably solve the problem.