ftp

Creating directory in FTP

Hello, i am using the following piece of code to create a directory. The problem is that i do not get an error, but i do not also find the directory i justt created. So, what am i doing wrong here? Should i take a break? Public Function CreateDirectory(ByVal Dir As String) As Boolean Dim myftprequest As Net.FtpWebRequest = CTy...

How do I implement support for ftp in WP7?

Hi I would like to retrieve documents from an ftp in my Windows phone 7 application (built with XNA in my case). As far as I understand WP7 does not support ftp due to port and protocol(?) contraints. Is there any way to get ftp support working? I guess I will be able to implement it my self once socket support is added but I dopn't wan'...

How to keep FTP connection (or any connection object) alive between activities

Hey, I'm coding a very basic FTP client on top of my application and I have 2 activities. The first one is the file explorer and the second one is the image viewer. Once I click on the image filename on the explorer, I want to pass the connection to the other activity to handle extra stuff. Basically, I want to keep the same org.apache....

Catch credential needed with NSTask and rsync

Hi guys, Fist post for a french developer! I'm trying to create a simple synchronization using rsync and objective-c. So I used NSTask like that : NSTask *task = [[NSTask alloc] init]; [task setLaunchPath:@"/usr/bin/rsync"]; NSArray* args = [NSArray arrayWithObjects:@"-av", @"/Users/BiB1/Documents/test/", @"[email protected]:~/te...

FTP quote RCMD CALL from Ubuntu Server to remote UNIX system

I have a file containing my clients articles that weekly needs to be uploaded to a remote UNIX server via FTP and a remote command is used to read the articles into their system (an agency that keeps track of EAN-codes). The people running the remote server gave my client a batch-file to run in order to upload this article file to the se...

Improve downloading speed in subthread

I have a program which manages serveral subthreads for FTP downloading.It works fine except that the downloading speed becomes slow when number of subthreads increased.I've tried downloading the same resource with IE at the same time,and it's much faster.So how can I improve this?All the threads are started by AfxBeginThread.Help would b...

Getting warning on ftp_get() in PHP

I try to retrieve a text file using ftp_get() and when I execute the script I get warning: ftp_get() [function.ftp-get]: Can't open data connection Can some one give some clue what is wrong. This was working on my previous hosting/server since I moved it it broke. Are there some specific PHP configurations. I checked the phpinfo and ...

How do I download a file from an FTP server using FTP over SSL using .NET?

My post title almost states it all: How do I download a file from an FTP server using FTP over SSL using .NET? I have read a bit and there are several 3rd party components to purchase that wrap up this functionality. The deal is, this is a very specefic need and is not going to grow much, so if downloading a file from an FTP server us...

Creating a custom FTP Server in .NET?

Suppose I want to create a "custom" FTP server, that is: It will look like a standard FTP server to the outside world It will actually serve data from either in-memory streams of data (dynamically generated by code) or from network streams, instead of from the actual file system Is there an existing FTP server implementation that I ...

vsFTPd: per-user IP filtering for vitrual users

Hello, I'm running a vsFTPd FTP server with virtual users (i.e. users are stored in Berkeley DB and do not exist at OS level). The users are authenticated via /etc/pam.d/ftp: %PAM-1.0 auth required pam_userdb.so db=/etc/vsftpd/vsftpd-virtual-user account required pam_userdb.so db=/etc/vsftpd/vsftpd-virtual-user I wan...

SharpSSH JSCH exec command & symbolic link

Using the Tamir.SharpSsh.jsch I am trying to run a custom command in VB2005. so i opened an "Exec" channel and setup the command "dumper df_500.bin". it returns a response that dumper does not exist. so I tried doing the exact same command in a command window in Tunnelier and it works in that environment. the only thing special about thi...

Java FTP problem

when using FTP in java after I tell FTP server that I want to download a file, server return a string containg IP address and a port I start a new thread in main thread to receive a file at that port. then I send QUIT command but wrong response that telling file is being sent returned. what is wrong ? ...

FTP Server Implementation C++

Hi all! I have to implement a kind of FTP server in C++ for a school project. The goal is learn how the FTP works internally. I'm a lil bit lost in how to start it. I know the FTP Protocol, but I still don't know what can I do to start coding. Someone can point me a way to start? Some links, libs in C++, etc? Remembering that is a serv...

Having issues with file permissions through VSFTPD

So I've activated the virtual users option for VSFTPD which allows any user names that much a directory under /var/www/ to be a user. I've configured it properly so that users can login, but once logged in, can't make any changes to the directory. It's 755 and it's ownership is set to www-data:users. Anyone have any thoughts? Thanks. ...

Can't access "/conf" and other folders with ftp (filezilla)

How do I access folders such as /conf, /usr/bin, /var with ftp? I want to be able to edit the files in them using a program like filezlla I heard it had to be done with vsftpd, can someone explain more about that -and using filezilla sorry if it sounded stupid ...