ftp

Test FTP locally with WAMP 2.0?

I have WAMP 2.0 installed and am working on a content management system using PHP and MySQL. Is it possible to use the PHP FTP functions on my local machine, so I can test them? Thanks! Mike ...

FtpFindFirstFile and Hidden Files?

Is it possible to get a list of hidden files over an FTP server using FtpFindFirstFile? I can get all files aside from hidden ones. I am wondering if there is a flag I need to set, or if there is just no way using that function. hFindConnect = InternetConnect(hInternet, mHost, INTERNET_DEFAULT_FTP_PORT, mUsername, mPassword, INTERNET_S...

Using ftp in C# to send a file

I'm trying to send a file using ftp. I have the following code: string server = "x.x.x.x"; // Just the IP Address FileStream stream = File.OpenRead(filename); byte[] buffer = new byte[stream.Length]; WebRequest request = WebRequest.Create("ftp://" + server); request.Method = WebRequestMethods.Ftp.UploadFile; request.Cre...

What is wrong with my ftp code?!

I am using c# in .NEt 2.0 to simply try to upload a file. Everything seems ok in the code, but it keeps failing at when I go to create a stream from the FtpWebRequest.GetRequestStream method. Here is the code... FtpWebRequest ftpRequest; FtpWebResponse ftpResponse; try { string fileName = Pa...

How do I specifyt he root of the server when I ftp?

I am using c# in .NET 2.0. I HAVE to send the file to the C drive on the server. Is this the defaut? IE, would this go to the C drive? ftp://myhost/test.txt ...

How to use FTP get/put from Solaris to IBM Mainframe?

Hi there, For some reason when I try to use get or put from a Solaris box to an IBM mainframe, the ftp client appears to hang. I've tried all sorts of different variations (for example, including using quotes and not), and all I ever get is a "200 Port Request OK". But I never get the prompt back, and eventually the connection breaks. ...

FtpWebRequest Download File

The following code is intended to retrieve a file via FTP. However, I'm getting an error with it. serverPath = "ftp://x.x.x.x/tmp/myfile.txt"; FtpWebRequest request = (FtpWebRequest)WebRequest.Create(serverPath); request.KeepAlive = true; request.UsePassive = true; request.UseBinary = true; request.Method = WebRequestMethods.Ftp.Dow...

Why can't I set a Stream using the FtpWebRequest.GetRequestStream() method?

I have been trying to write a simple ftp client using c# in .NET 2.0 for 3 days now and am missing something. I I create an ftpWebRequest object and set all its properies. string uri = host + remoteFile; System.Net.FtpWebRequest ftp = (FtpWebRequest)(FtpWebRequest.Create(uri)); ftp.Credentials = new System.Net.NetworkCredential(usernam...

Backup cPanel with PHP and upload to another FTP

I have a php script to backup automatically cPanel and upload the .tar.gz concurrently to an FTP server. The script works fine. The script requests the file then starts the ftp transfer and when the upload is complete it send also a confirmation email. The only problem is that even if the backup is, for example, of 1GB the uploaded fi...

ant ftp doesn't download files in subdirectories

Hello, I'm trying to download files in subdirectories from an ftp server with ant. The exact set of files is known. Some of them are in subdirectories. Ant only seems to download the ones in the root directory. It does work if I download all files without listing them. The first ftp action should do the exact same thing as the second. ...

Java FTP applet

Can someone suggest a FREE Java FTP applet that I could use to allow non-tech savvy customers to upload large files without having to install an FTP client? It doesn't need to have to ability to "get" files, only "put" files. Drag-n-drop would be an added benefit. Though not FREE, this applet (jClientUpload) by JavaZOOM is pretty much...

upload file with FTP using nant

hi, i have a nant script that i use to build my .net project and i'm looking to see if there is a way to upload the resulted assemblies to some remote folder using an FTP task of nant. i couldn't find any good example online, and i'm wonder if anyone know how to do it, if its doable at all. FYI: i'm running it on a windows machine, if...

How to resume an ftp download at any point? (shell script, wget option)?

hi! i want to download a huge file from an ftp server in chunks of 50-100MB each. At each point, i want to be able to set the "starting" point and the length of the chunk i want. i wont have the "previous" chunks saved locally (ie i cant ask the program to "resume" the downlaod). what is the best way of going about that? i use wget mos...

How to partially ftp a file (using ftp, wget with shell scripts or php)?

hi, i want to partially download a ftp file. i just need to download lets say 10MB, but after skipping 100MB (for example). In php, http://php.net/manual/en/function.ftp-fget.php this function allows arbitay starting point: bool ftp_fget ( resource $ftp_stream , resource $handle , string $remote_file , int $mode [, int $resum...

how to download folder from some ftp server into your server home directory and give to that directory rights?

how to download folder from some ftp server into your server home directory and give to that directory rights? (like all files in this directoy have all or non rights...) not using special libs if it is possible... how to do such thing? ...

Visual Studio plugins for ftp?

Any good FTP Plugins out there for VS 2005/2008? ...

Understand ACTV mode and the PORT command

Hello, I'm the part time FTP server administrator (with no real full-time admin). We currently only allow ACTV mode connections. Some of our clients have had issues with this but for the most part they've been ok using ACTV. For the few who aren't, we've been able to push the data over to their servers from ours. there is one clie...

Where is the FTP support for Google Chrome and Internet Explorer 8 ?

I tried to upload files via FTP but ran into problems. Are modern day browsers no longer supporting FTP "write" capability? I managed to use Dreamweaver to FTP the files successfully. ...

FTP to SFTP in shell scripting

This script is to connect to different servers and copy a file from a loaction defined. It is mandatory to use sftp and not ftp. #!/usr/bin/ksh -xvf Detail="jyotibo|snv4915|/tlmusr1/tlm/rt/jyotibo/JyotiBo/ jyotibo|snv4915|/tlmusr1/tlm/rt/jyotibo/JyotiBo/" password=Unix11! c_filename=import.log localpath1=`pwd` for i in $Detail ...

Is there a way to do FTP-SSL with Perl's Net::FTP module?

I'm working on a project that requires me to download files from FTP using Perl. I just found out that I've got the option to use FTP-SSL. It seems that this is just SSL encrypted FTP (similar to HTTP vs. HTTPS) and I should just have to send the "AUTH TLS" or "AUTH SSL" commands to the FTP server. The question: is there a way to do thi...