CodeIgniter upload library only supports uploading image file from PC.
I am trying to make a code that a user can upload image with image url address.
http://example.com/photo/jake2910.jpg
I simply send this image address to server and upload the photo.
Is there a way to do that? (trust me I tried different codes already for few days.)
There is no need in CI’s upload library at all. You can simply download the file with this code:
But be very cautious about what files you are trying to save. Remember that even images can be stuffed with vulnerable code.