ftp

FTP User Isolation

Hi, I have a website set up as an FTP server too. I want to use the FTP server to allow to access content from a folder outside the root. I guess this could set up easily by adding a virtual directory. Problem is that I dont want the users to see this outside folder by browsing to the site by http. Is this possible? Thanks ...

Does anyone know why the SimpleFTPSample that apple provides leaks memory?

I noticed that the SimpleFTPSample that apple provides leaks memory. The Leaks Performance tool detects a leak when using the "List" sample. A leak is detected after you press the "List" button the second time. Does anyone know why? ie have a fix? I am considering using FTP in my app, but don't want to create a leaky app. Thanks. ...

MSBuild Community Tasks Documentation

Hi, Is it just me or is the documentation on this project really scarce? I'm trying to find how to use the FtpCreateRemoteDirectory and FTP functionality in general, but can't seem to find anything. Googling FtpCreateRemoteDirectory, only shows the project's source code... ...

ftp to server with uname and pass in comandline

Hi, From a unix machine I'm trying to FTP to a server but want to log in also in the command line e.g. ftp 10.2.3.4 username:password Can't find the general format for doing this? ftp 10.2.3.4 -u username -p password> doesn't appear to work either? Thanks, ...

FTP Downloading a file while its upload is in progress

Hi All, I have a windows service (VB.NET) which downloads files from a server after a specific interval. What happens if it try to download a file when its upload is in progress? If it creates some problem, how to cope with this situation? Thanks, Imran ...

Setting Up An FTP Server: IIS 7.5

I think I might have incorrectly configured an ftp site (it's my first time setting one of these up) in IIS 7.5 on Windows Server 2008 R2, but I'm not sure where I've gone wrong. The error that I keep getting is "User cannot log in, home directory inaccessible." This happens when I: Open up a Windows command prompt. Type ftp localhos...

FTPClient in MFC :GetFile(Download) issue

Hi, I am using CFtpConnection class for creating my FTPClient Library using MFC. I am using GetFile to download file from Server. MY requirement is like if i am downloading 100 MB video from server when 50-60 MB video is downloaded and in between if i play that while it should play upto that particular location what it has downloaded up...

vsftpd problems/install

Hi, I have installed vsftpd and added users normally. However I get permission problems. Everything is on default and I have turned off anon uploads. I cannot change directory or I cannnot upload/create/change permissions or folders and files. Please help, been trying for ages. I am running on ubuntu 32 bit ...

Can we use CFTPconnection(FTP MFC) class in windows 7 and vista ?

Hi , I was developing one FTPClient using MFC (CFTPconnection) just i want to know whethere we can use this in Windows 7 and Vista OS ? ...

Looking for a good book covering CURL library under c++

Hello, are there any good books/tutorials decscribing how to use CURL library under C++ to implement FTP / SFTP clients ? Thx for help. ...

Python to check if file status is being uploading

Python 2.6 My script needs to monitor some 1G files on the ftp, when ever it's changed/modified, the script will download it to another place. Those file name will remain unchanged, people will delete the original file on ftp first, then upload a newer version. My script will checking the file metadata like file size and date modified t...

Component or Source for Running an FTP Server via C# (with SSL)

I'm surprised by the lack of products out there for running your own FTP server in managed code. I'm looking for either a product or thorough source code for building an FTP server in C# that supports SSL. I need complete control over the directory/file handling, not just serving files from a local directory. Clever Internet .NET Suite ...

How to upload mutiple files by FTP task in SSIS

Hi, I like to upload multiple files, with different names, in a single FTP task to server in SSIS package. I am only able to upload one file. the file names are also different e.g xyz, zbc, ced is there any way to upload multiple file in a FTP task in SSIS. Thanks ...

Exception handling in FTP task of SSIS

Hi, I have a FTP task in my SSIS package which deletes files from FTP location. But the issue is that if the file(s) or directory is not available on the server, the task gets failed. Is there any way that I can fix this issue? Thanks looking forward for urgent reply. ...

Ftp Dll: could not put file 550 can't access file I/O Error

When trying to ftp a build of a ASP.NET site, I sometimes get this error. Is there way to prevent this, a configuration in web.config of IIS that prevents dlls being locked? ...

FTP copy a file to another place in same FTP

I need to upload same file to 2 different place in same FTP. Is there a way to copy the file on the FTP to the other place instead of upload it again? Thanks. ...

Error connecting to linux server using batch file. Able to connect with Filezilla

I am trying to connect to a remote servre via FTP in my VB 6.0 application. I tried connecting to remote server using Inet but it gave status unknown error (code:120089). So I am trying to do this by batch file. I created a batch file as below:- open 192.168.1.3 22 root !@#%RedHat%)(* cd "/opt/test" put "C:\envars.exe" "envars....

Integrating LDAP with Glassfish and FTP

Hello, I'm currently faced with the task of integrating a glassfish environment and an FTP-Server with LDAP. This is work for an university, we need to be able to have a number of students(which all have Login-Data via LDAP, though access is only permitted via SSL) run their own applications on a glassfish server, upload them and then r...

Execute script when upload via FTP

Hi, I was simply wondering if it was possible to execute a PHP script when the webmaster uploads a file (image in this case) in a certain folder from a FTP software? If yes, what methods would work best? Any link/resource/tip is glady appreciated. Thank you! ...

get latest file from ftp

Trying to create a simple plugin that simply connects to an ftp site, looks up the latest file and then downloads it. However, it isn't getting the latest file. I'm using the org.apache.commons.net.ftp.ftpclient for everything. Here is my code public static void main(String[] args) { FTPClient client = new FTPClient(); try { ...