|
My ftp server requires that I use a secure protocol like sftp. Is there a way to set this option in the ftp login info in VARREPORT?
Started by jdcsyoung on
, 3 posts
by 2 people.
Answer Snippets (Read the full thread at net):
Which SFTP method are you using? SSL(explicit or implicit) or SSH? Any of those will work just not unencrypted ftp..
SFTP is not FTP, and the current code does not do SFTP.
|
|
Hi
Here is my prob in Brief.
I know how to upload a file to server using FTP with programming language PHP.
But is that possible to get files from another server to our server using PHP with
having the FTP Username and Password
Thanks n advance...
Fero...
Started by Fero on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
The following snippet is from the documentation :
$conn_id = ftp_connect($ftp_server); // login with username and....
Yes, you can fetch files from FTP using PHP - using ftp_get .
Do the servers support FXP? They will need to.
|
|
Hello all, F Is there a way to monitor the FTP port so that I can know what commands my FTP application is sending to a FTP server?
I am using a closed-source FTP client application, which is not working with a closed-source FTP application server. The...
Started by Alvin on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
Can you configure a proxy with the client? Then you could install an ftp proxy server....
The core FTP commands should be visible capabilities for FTP as well as other protocols.
It...I have used wireshark fairly successfully before.
|
Ask your Facebook Friends
|
Is it possible to set access any directories outside the FTP root with Windows Server 2008 and FTP 7.5 server? I have FTP User Isolation set to 'User name directory' and have created a virtual directory under the LocalUser directory with the same name...
Started by Mr. Flibble on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
In IIS 7(.5), you can click on the FTP Directory Browsing icon and turn on Directory Listing navigate to it with FTP the vdir....
It looks like adding a virtual directory does work - it just doesn't show up in the FTP directory for you.
|
|
[hide]
Code: ftp://212.122.1.85/pub/software/ ftp://212.129.153.196/ ftp://212.130.239.56/ ftp://212.134.1.34/pub/ ftp://212.134.1.34/pub/Hikaru-German/ ftp://212.134.1.34/pub/Hikaru-Sound/ ftp://212.137.71.41/ ftp://212.146.128.30/emulator/ ftp://212...
Started by xmodex on
, 15 posts
by 13 people.
Answer Snippets (Read the full thread at final4ever):
Hide] Code: ftp://129.206.104.200/incoming/uwe/ ftp://129.241.210.42/ ftp://129.241.210.42/pub/games/ ftp://129.241.210.42/pub/sidmusic/lala/ ftp://129.241.56.118/ ftp://129.70.15.78/pub/games/worldforge ftp....
|
|
Is it possible to continue ftp download after reconnecting to ftp server?
Started by Woland on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
The Windows command line client doesn't.
FTP client is "reget." The protocol command is RESTART (or REST), as documented about half way down the page in the RFC959: FTP: File Transfer Functions page.
|
|
I am trying to upload multiple files via Net::FTP and Perl. Has anyone done this as even my basic script below fails?
use Net::FTP; use File::Basename; my $ftp; my $host ='56.309.24.2'; my $user ='user'; my $pw ='pass'; my $file ='097360718843.jpeg'; ...
Started by tin tin on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Use
my $ftp = Net::FTP->new($host, Debug => 1) or die "Could not create FTP object/bin/perl use strict; use warnings; use Net::FTP; my $host ='56.309.24.2'; my $user ='user'; my $pw ='pass'; my $file ='097360718843.jpeg....
|
|
I have question about FTP clients. Could anybody assist me with it? Which FTP client do you prefer and why?
Started by Syed Tayyab Ali on
, 23 posts
by 23 people.
Answer Snippets (Read the full thread at serverfault):
I don't use ....
Yeah, define best...
Http://www.coreftp.com/
Note, this is non-commerical only.
I am a big fan of Core FTP.
I use filezilla
ftp - file transfer program
man 1 ftp
Which platform?
On MacOS, I like Transmit platform.
|
|
Hi,
I am working in a bash script where I need to analyze the output of an FTP session. But I encountered a problem with SUSE Linux FTP client when connecting to an AIX ftp server. The problem is that the output from the FTP command is beign shown on ...
Started by Guillermo Vasconcelos on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The documentation is confusing because it states that the -v parameter is the dafault .
You need to redirect stderr AFTER stdout, as in:
ftp -n servername > ftplog.log 2>&1
NOT
ftp for FTP.
|
|
I 'm developing FTP exe ASP.NET、C#2.0 .
but I FTP server returned 500 error This command execute everyday. but this error is o**ccured only twice** on the month. What's wrong?
Started by ffffff on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
When the error occurs, write down the port, decode.
As FTP uses a separate Port for data transfer, likely your FTP Client tried to pass in an invalid port.
Kb/281193
FTP 500 is an "Invalid PORT Command".
|