This might be a very common question but i searched lot and finally decided to get some expert advice.
I was wondering if someone have uploaded file directly from URL to cPanel file manager. I can upload file from my computer using upload tab in file manager but not able to find any option for extracting data from URL.
I have tried several forums, Q/A websites but got nothing. I will really appreciate if someone can brought this question on to expert's attention.
I have looked
http://forums.cpanel.net/f145/filemanager-upload-url-215911.html
http://forums.cpanel.net/f5/upload-via-url-305691.html
and my other places but found nothing but the question.
I too had this question. Being on a slow connection downloading and then uploading again wasn't an option for me.
There isn't any way to do this through the cPanel filemanager at present. If you don't have access to SSH you can get around it like this:
get1.php
or whatever and place it in a location you will be able to access on your domain.In get.php edit the file in the filemanager, and put this code: <?php exec("wget http://domain.com/path-to-file.zip"); ?>
Now navigate to your file you created in step 1 in your browser, so it might be http://domain.com/get1.php
Now of course this is highly insecure as any bot or person could just request your get1.php file, so make sure you delete it after your done. This is just a simple hack, any better ideas appreciated.