Server for the File Transfer Protocol (FTP), a standard network protocol used to transfer files from one host to another host over a TCP-based network.
0
votes
1answer
15 views
FTP server Client using ftplib
I am trying to implement both a FTP server and a client to transfer files, but i am basically unable to make a connection between the two using the ftplib module in python....
This is what I did, how ...
1
vote
1answer
23 views
List files and their info using stat
I am programming an ftp server using c++ and I need to be able to get all info about files in form of :
sent: drwxr-xr-x 1000 ubuntu ubuntu 4096 May 16 11:44 Package-Debug.bash
so I can send it to ...
1
vote
1answer
42 views
Testing FTPS and SFTP through any online server
I am working on a module which provides FTPS and SFTP service.
To verify the working of my service, i need online server(s) which serves FTPS and/or SFTP requests.
Is there any good service as ...
1
vote
1answer
46 views
FTP server file transfer
I am uncertain about a few things regarding ftp file transfer. I am writing an ftp server and I am trying to figure out how to make the file tranfer work correctly. So far it works somehow but I have ...
-1
votes
0answers
22 views
Server configuration of Apache Ftp Server [closed]
On official page
http://mina.apache.org/ftpserver-project/configuration_server.html there is http://mina.apache.org/ftpserver/ftpserver-1.0.xsd but not Found. How can solve?
-1
votes
0answers
30 views
FTPLet Apache FtpServer create custom MyFTPLet [closed]
I have make my server:
FtpServerFactory serverFactory = new FtpServerFactory();
ListenerFactory listenerFactory = new ListenerFactory();
listenerFactory.setPort(1252);
...
0
votes
0answers
16 views
storbinary and retrbinary of ftplib
I have a FTP server and client written in python. The client is written using ftplib. The problem i am facing is when is use the ftplib functions retrbinary and storbinary. I have a server written in ...
0
votes
1answer
41 views
How to connect multiple ftp servers using java
I am new to ftp concepts. i need to move files from one ftp server to another ftp server,using java program
can you give me an idea how to do this
-2
votes
0answers
11 views
How to connect via Proxy to listening ftp server [closed]
I try to proxy my ftp server but i cannot, the proxy 111.222.333.4 should be listening on port 21 or other. How can I connect to the ftp server? via 111.222.333.4 I get not response.
how does Skype to ...
0
votes
0answers
55 views
SSL / TLS Handshake failed
i'm trying to connect to a FTPS Server with explicit TLS. In Coda (OS X FTP App) it works, but PHP outputs this error message
Warning: ftp_login(): SSL/TLS handshake failed in ...
0
votes
1answer
85 views
How to send/receive binary data through sockets?
I have to code a FTP server and I have a problem on how data is transferred.
I'm using ftp command on linux to test it and I'm currently working on LIST, which sends the list of files/directories in ...
0
votes
1answer
17 views
FTP Users and Sessions [closed]
Basically my question is: can you connect with an ftp client, FileZilla for instance, and log on to a session then transfer some files but at the same time from another PC log in with the same user ...
3
votes
1answer
135 views
FTP Connection Timed out 421 : parser error
The question has beed edited. I am trying to list all the files in a FTP directory - and though the code works fine when run in a normal Netbeans project, when using the same code in a Maven project ...
-2
votes
1answer
23 views
Software that Synchronizes Local files to server via ftp/s [closed]
Im looking for a software that synchronizes local files to server via ftp/s.....not google drive nor dropbox..
(google always gives me this result) .
I need to sync my code to server .
0
votes
0answers
34 views
Create FTP User Accounts with Rails
Ok I'm not sure how to approach or explain this but I'll give it a try.
I'm developing a rails app on my mac using Devise for auth.
I would like to do the following:
When a user joins the site, ...
0
votes
0answers
34 views
proftpd limit write to directory with user defined message
I am attempting to specify a directory on my proftpd server that should not allow users to upload files to a specific directory. During an update i do not want anything to be written to this ...
0
votes
1answer
91 views
FTP client subdirectory creation
I am using FTPClient for creating a sub directory in the FTP server. I want to create a directory "Archive " under "Root".I use the following function for creating the sub directory.
boolean s = ...
2
votes
0answers
78 views
how to send photo from android device to FTP server
how to send camera capture photo from android device to FTP server
-1
votes
1answer
85 views
Proftpd doesn't return directory listing [closed]
I have a weird problem. Whenever I try to communicate with my FTP, it doesn't give me any directory listings back. Instead, it times out and closes connection.
I have tried various methods to fix ...
-3
votes
2answers
191 views
How to upload xml files to FTP Server by using CFNetwork concept in iphone
How to upload xml files to FTP Server by using CFNetwork concept in iphone?
Is there any sample project?
Is there any openSource available?
0
votes
0answers
44 views
proftpd mod mysql
i've setuped a proftpd server on a distant host.
I may it work in some simple way, actif mod, with unix user, blocking user in /var/www.
It was working nice, but i need now the mod sql (package ...
0
votes
2answers
55 views
What should be the FTP response to PASV command
i'm writing an FTP server, but i don't understand the PASV command, any server sends a response like this:
227 Entering Passive Mode (213,229,112,130,216,4)
what does the numbers in brackets mean? ...
0
votes
1answer
89 views
How to communicate FTP transfer with standalone PHP Server?
I have a Ubuntu Server on which I have my Apache and FTP server (I am using Proftpd server). I have a small PHP CMS and for database I am using MySQL server. This was my server side environment. Now ...
0
votes
0answers
132 views
Permission for proftpd
I have a problem with proftpd (on debian 6).
If I don't use:
DefaultRoot /home
Then I have no problem, but FTP-users have access to the whole servers (they can't edit files but ...
-2
votes
1answer
75 views
Server FTP proftp [closed]
I'm setting up a FTP-Server (ProFTP) on Debian 6, but I got an error:
Preconfiguring packages ...
Selecting previously deselected package proftpd-basic.
(Reading database ... 27485 files and ...
1
vote
0answers
58 views
static library is missing on other computer
I have written program that sends files to ftp server. In my computer, where I have VC++ 2008 express edition, it works fine, but when I tried it on the others computers it hadn't worked. I figured ...
1
vote
0answers
68 views
FTP STOR command, how do I know if all the data was sent?
I'm trying to build a simple FTP server, but for the STOR command I'm not sure how to distinguish between the data connection closing because all the data was sent, or if the data connection closed ...
0
votes
1answer
30 views
Can REST be followed by STOR?
I'm trying to create a simple FTP server, and I'm not sure how to implement REST correctly.
The documentation says that the REST command affects the command immediately following it, but it doesn't ...
-3
votes
1answer
60 views
Netbeans + Git - The Basics [closed]
Our situation:
We want to use git to manage our project files. So we've set up a unix server and installed git there. Then we created a dircetory and init a git repository.
On our workplace ...
2
votes
1answer
63 views
When should 226 be sent from the FTP server?
I'm creating an FTP server in Qt, and I'm not sure when to send the 226 success response code for a RETR command.
Do I send it after all the data is written, but before the data connection socket is ...
1
vote
1answer
112 views
Implementing the LIST command correctly in an FTP server
I'm trying to build a simple FTP server using Qt, but when I connect to it and type 'ls' using the Linux command line ftp client, I get the directory listing, but then there's a warning at the end:
...
0
votes
1answer
76 views
FTPServer in Python throws exception on 'mget'
I implemented a FTP Server in Python using pyftpdlib.ftpserver
This works fine with mput/put operations but fails with mget/get. Following exception is thrown:
[]10.203.200.136:62408 Connected.
...
1
vote
0answers
16 views
Which FTPserver supports a large number of clients
I have a practice room with a LAN. It is common for student to do exercises. A student create some files on a computer and I want:
- He/She can't see files of others.
- He/She can continue to work on ...
1
vote
0answers
444 views
Connection closed by server. 421 timeout
I'm using filezilla to access file by ftp. From last few days we're facing strange issues. Whenever I make changes on file and upload it to server via ftp, I'm getting an error like:
Response: 421 ...
1
vote
2answers
140 views
Implementing FTP interface/protocol
I've been asked to set up a FTP server using python that different users can log in to, and depending on their login will display a different file structure.
Part of the structure will be read only, ...
0
votes
1answer
190 views
Embedding an FTP Server in an App
I wanted to run an FTP server via an Android app, are there any open source FTP servers available so that I can use them in my app. The FTP server will be run as service, as per the settings set by ...
0
votes
0answers
21 views
Does Null FTP Server API supports events?
We are looking for a FTP Server that has following features but not limited to:
- high performant
- supports SFTP
- has API support
- API capable of managing user/groups
- API that responds to the ...
0
votes
1answer
68 views
Can i tweak FTP command behavior via scripts on FTP Server
I would like to know can i some way tweak the FTP command behavior say for example for STOR command.when FTP server on IIS receives STOR command from any ftp client,i would like to run scripts having ...
0
votes
0answers
40 views
FTP request redirection to another PC in my LAN
This is a problem that it's solution could be easy, but I havent found it, I got this issue:
I've already installed two web servers in separated computers, Apache in One, Tomcat in other.
I got a ...
0
votes
2answers
3k views
FTP “ls -lt” command: How does it list the file details for Linux FTP and Windows FTP server?
I am writing FTP client that should work for at least Windows and Linux FTPs. BUt before I proceed, I want answer to these questions.
In which order files are listed when FTP ls -lt command is used ...
0
votes
0answers
100 views
SFTP and NULL FTP server
My website is hosted on a VM running Windows 2008 R2 64-bit and running IIS v7.5.
I'm using Dreamweaver CS4. I see that Dreamweaver supports SFTP.
I want my user credentials encrypted when ...
1
vote
1answer
157 views
Tell if a file is a directory on an FTP server
I am writing a c++ program that interfaces with an Apache FtpServer using libcurl. I was originally using the LIST command to get the contents of a directory but it was giving me a lot of information ...
0
votes
2answers
279 views
Java: Regular Expression for FTP server list?
I'm writing FTP client handler in Java and I can't use FTP libraries like Apache.
My problem is that I receive the list from the server in this format:
drw-rw-rw- 1 ftp ftp 0 Mar 17 ...
0
votes
0answers
96 views
Moving a file at stp server with incorrect file name format (encoding error)
I am moving a file from ftp server from a directory to another directory at the same server, the file name is written in Arabic format and when i try finding the file by name to move it i failed ...
3
votes
1answer
341 views
Uploading file to ftp server with arabic name(encoding error)
I am trying to upload a file whose name is written in Arabic language to ftp server, and i succeed in uploading the file but i have a problem at the ftp server, where the uploaded file name is ...
1
vote
0answers
268 views
Connecting multiple users on Apache FTP server in java
I am having a problem with apache ftp server. Its working fine for me for one user. I want to connect multiple users on Apache FTP server with different home directories.
Here is my code for ...
0
votes
1answer
3k views
Can't Login with ProFTPD
I just installed ProFTPD on a test CentOS webserver, which contains Webmin.
After installing ProFTPD I tried to connect via FTP and it wouldn't let me. I've tried to connect with FileZilla and ...
1
vote
2answers
222 views
How to get error if FTP server is invalid.?
I am trying to connect FTP Server ushin php code,
if i put FTP-Servaer Name Invalid then its end the script and not return false in $conn_id.
code spinet:
$conn_id = ...
0
votes
1answer
245 views
Check and Download Multiple files from FTP server
I use the concept of uploading and downloading files from FTP server. I have been successful in both for a single file.
Now, for downloading, there may be more than one files on ftp. So, multiple ...
2
votes
2answers
2k views
500 OOPS: vsftpd: not configured for standalone, must be started from inetd
i'm have a problem when intall vsftpd using mac port,when i wanna to start service of vsftp with
sudo /opt/local/sbin/vsftpd
i have the error like this
500 OOPS: vsftpd: not configured for ...



