Gossamer Forum
Home : General : Internet Technologies :

Files from a remote server with FTP?

Quote Reply
Files from a remote server with FTP?
I've been looking around, but I cant see to work out the command to grab a file from another server. With UNIX it is 'wget' via SSH, but as far as I can tell there is nothing like this on NT (at least not that is installed on the server I'm working on).

Does anyone havew any tips on how they transfer large files?

Thanks

Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Quote Reply
Re: [Andy] Files from a remote server with FTP? In reply to
Hmm why don't you just download it normally if it's NT?
Quote Reply
Re: [Paul] Files from a remote server with FTP? In reply to
Cos its 160Mb Frown There is a feature to grab files in Perl...but for the life of me I can't think of it Frown

Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Quote Reply
Re: [Andy] Files from a remote server with FTP? In reply to
wget has been ported for Windows here:

http://www.interlog.com/~tcharron/wgetwin.html

- wil
Quote Reply
Re: [Wil] Files from a remote server with FTP? In reply to
I don't have that kind of access to the server. All I have access to is Perl/MySQL and FTP.

Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Quote Reply
Re: [Andy] Files from a remote server with FTP? In reply to
Then use FTP!! Jeez, what do you think FTP was designed for?!

- wil
Quote Reply
Re: [Wil] Files from a remote server with FTP? In reply to
I'M ON A 56k connection! IT would take like a week or longer to download that kind of file....thats why I'm looking for other methods....Jeez Wink

Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Quote Reply
Re: [Andy] Files from a remote server with FTP? In reply to
Go to a mate's house /an internet cafe and burn it onto a C.D.
------------------
Dorg Hurgler Van Schongleur,
NordHein Van Resetelem, Belgium.
Eck SchekeBuugler Technologies.
Quote Reply
Re: [searchposts] Files from a remote server with FTP? In reply to
There has to be an easier way. I know that there is a function in pelr that can grab remote file, but I'm not sure what it is. I've had a look around...but can not find it Frown

Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Quote Reply
Re: [Andy] Files from a remote server with FTP? In reply to
After Gzipping it, you could use cuteftp pro's file split/multipart download feature.
------------------
Dorg Hurgler Van Schongleur,
NordHein Van Resetelem, Belgium.
Eck SchekeBuugler Technologies.

Last edited by:

searchposts: Jun 4, 2002, 5:26 AM
Quote Reply
Re: [Andy] Files from a remote server with FTP? In reply to
Any program, script, method you use will still be limited by your 56k modem.

Do you think wget is 'faster' than FTP? Do you think it can magically overcome the 56k barrier your modem imposes on your situation?

Think of this for a minute. The only way to speed this up is to compress the content on the server side before transferring it your host machine.

No matter what method of transfer you use; FTP, wget, perl, php, email, web, bbs, etc. etc. etc. etc. you will _still_ be governed by your 56k modem.

- wil
Quote Reply
Re: [searchposts] Files from a remote server with FTP? In reply to
I can't really gzip it as NT doesnt support a gzip feature does it?

Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Quote Reply
Re: [Andy] Files from a remote server with FTP? In reply to
From the Net::FTP documentation (that might be what you want):
Code:
use Net::FTP;

$ftp = Net::FTP->new("some.host.name", Debug => 0);
$ftp->login("anonymous",'-anonymous@');
$ftp->cwd("/pub");
$ftp->get("that.file");
$ftp->quit;

Ivan
-----
Iyengar Yoga Resources / GT Plugins
Quote Reply
Re: [Wil] Files from a remote server with FTP? In reply to
In Reply To:
Any program, script, method you use will still be limited by your 56k modem.

Do you think wget is 'faster' than FTP? Do you think it can magically overcome the 56k barrier your modem imposes on your situation?

Think of this for a minute. The only way to speed this up is to compress the content on the server side before transferring it your host machine.

No matter what method of transfer you use; FTP, wget, perl, php, email, web, bbs, etc. etc. etc. etc. you will _still_ be governed by your 56k modem.

Wil...you have completly the wrong end of the stick here.

What I am trying to do is get a l;arge file from my dedicated server, to another server (which happens to be NT). All I am trying to do is find a more effecient, and faster way than downloading it from the dedicated server, to my PC, and then over to the NT server.

Do you understand what I am trying to achieve now?

Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Quote Reply
Re: [Andy] Files from a remote server with FTP? In reply to
Yeah. So why don't you run FTP on the NT machine?

Start -> Run -> 'Type' FTP -> 'Click' OK.

And you're away.

- wil
Quote Reply
Re: [yogi] Files from a remote server with FTP? In reply to
Yes Yogi..that is exactly the kinda thing I'm looking for.,...thanks Smile

Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Quote Reply
Re: [Andy] Files from a remote server with FTP? In reply to
Damn...that Net::FTP thing didn't work...just gave me a CGI time out error :( I've gzipped the file up on my server now, and its down to 30mb. However, I'm wondering if I will have to upzip it first on my PC before uploading it to their server, or if there is a way of unzipping it on their system Unsure

Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!