PDA

View Full Version : Need Some Wget Related Help


newbie1
2-23-07, 05:51 AM
Hey

i wanna transfer a large file on my powweb hosting

now as we dont have ssh access how can i do this

please tell me in details coz i couldnt understand anything of wget on this forum

thanks

snowmaker
2-23-07, 10:54 AM
Well you could use a FTP program. As this would mean a SERVER -> CLIENT -> OTHER_SERVER transfer, instead of SERVER -> OTHER_SERVER, this could be not do-able.

Cadinos
2-23-07, 05:29 PM
if you want to use wget you can create a php file and call it from your internetbrowser :)
example code:

<?
$ac=`wget http://umn.dl.sourceforge.net/sourceforge/typo3/typo3_src-4.0.tar.gz`; // getting file from a different server
$ac=`tar -zxvf typo3_src-4.0.tar.gz`; // unpacking
echo "Done";
?>