Remote upload to cPanel folders

RedwolfAj

Junior Member
Joined
Jan 6, 2018
Messages
109
Reaction score
36
hello

i want to download and upload few large files(3GM/file ) to web hosting storage. downloading files and uploading it will cost too much time and money, is there any other way to do it ??

thanks.
 
You can do leech also. Right now i am in mobile i can help you after 3hr if you can wait
 
Hey there,
Yes, there are some possibilities If your web hosting supports remote file downloading which can simply be checked by trying to download a file from the remote server and supports PHP copy function or any other alternatives like curl, file_get_contents (these two are a bit more complicated).

So, If your hosting provider supports copy function you can create a file named file.php for example and put the followings in it:

PHP:
<?php
copy('http://example.com/largefile.zip', 'mylargefile.zip');

Then open your browser and point to yourdomain.com/path/to/file.php. It might take sometimes depending on the file size and server's connection speed.

Best regards
 
Back
Top