/** * Transfer Files Server to Server using PHP Copy * @link https://shellcreeper.com/?p=1249 */ /* Source File URL */ $remote_file_url = 'http://naderelewa.com/backup-8.30.2025_03-33-40_lobalegy.tar.gz'; /* New file name and path for this file */ $local_file = 'backup-8.30.2025_03-33-40_lobalegy.tar.gz'; /* Copy the file from source url to server */ $copy = copy( $remote_file_url, $local_file ); /* Add notice for success/failure */ if( !$copy ) { echo "Doh! failed to copy $file...\n"; } else{ echo "WOOT! success to copy $file...\n"; }