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.
Questions tagged [ftp-server]
225 questions
0
votes
1 answer
Problems to transfer files using FTP Apache Java implementation
I'm transferring files using FTP with JAVA.
I'm using FTPClient and FTPServer from Apache. But in a specific environment, sometimes the file isn't transferred. I call the enterLocalPassiveMode method from FTPClient before the login method call and…

Fagner Fonseca
- 293
- 1
- 4
- 15
0
votes
1 answer
AfterPutFile event with Indy FTP Server
I'm writing a FTP Server application which uses Indy FtpServer component, Version 10.5.9.0.
I need to intercept the "AfterPutFile" event because I have to do an action after, however I didn't find any event that does this.
Can someone help…

Enzo Costantini
- 167
- 1
- 9
0
votes
2 answers
What is correct way for an FTP server to prevent corrupted uploaded files because of late append?
Using pureftpd I uploaded 1% of a 1276541542 byte file or about 15 megs. Then I killed the network connection abnormally to simulate a client getting kicked off their ISP. Then I waited an hour. Then I re-connected and issued an APPE (append)…

Andrew Arrow
- 4,248
- 9
- 53
- 80
0
votes
1 answer
Where does pure-ftpd call its uploadscript?
I've been looking through pure-ftpd-1.0.42 source code:
https://github.com/jedisct1/pure-ftpd
Trying to find when it triggers:
https://github.com/jedisct1/pure-ftpd/blob/master/src/pure-uploadscript.c
i.e. when does it run the uploadscript after a…

Andrew Arrow
- 4,248
- 9
- 53
- 80
0
votes
0 answers
java.io.IOException: FTP error: 553 Could not create file
I'm trying to save image in FTP server. But it giving error like java.io.IOException: FTP error: 553 Could not create file.
I call the method
upload("xxx.xx.2.36","ftpuser","xxxxxpos",imageFile,"ftp://ftpuser@xxx.xx.2.36/Item/");
public static void…

Amrutha
- 51
- 1
- 2
- 6
0
votes
1 answer
Can not connect vsftpd remotely?
I have a home network with a raspberryPi and a Windows computer. I want to share files between these two via FTP. So I have downloaded, installed and configured VSFTPD on my raspberryPi. Now I can connect this server locally from rasPi but not from…

Canburak Tümer
- 993
- 17
- 36
0
votes
1 answer
Moving File From DCM4CHEE to FTP server
I have a dcm4chee PACS server I want to write a code that can move the files from the dcm4chee server to FTP server in JAVA I need guidance in this regard.

Asad Ali
- 15
- 7
0
votes
0 answers
Why is FTP protcol File Zilla Sending me backward slashes?
I was wondering why filezilla was sending me backward slashes when I am implementing a FTP server.I believe that it may interfere with another function I have to download files. (RETR).
This is my CWD code:
private void Cwd( String param ){
…

Dan
- 45
- 9
0
votes
1 answer
I'm building a SFTP/FTPS plugin for my app that can login to FTPS or SFTP servers. What authentication properties are different for FTPS and SFTP?
My application needs to access files from a remote FTPS or SFTP server depending on what my app user wants to connect to. I need to be able to access file content in a folder or create a folder.
1) What login properties differ for an FTPS and SFTP…

eechpeech
- 255
- 1
- 4
- 17
0
votes
1 answer
Android FTP server authenticates once
I am trying to implement an FTP server in my application using the Apache FTP server library.
The server is up and running and working fine, but only once.
Note: I am using a hardcoded user for now. username: test and password: test
So in…

Maclaren
- 259
- 3
- 13
0
votes
2 answers
proFTPD permission denied
So, I'm running proFTPD (should be the newest one from www.webmin.com)(with webmin1.760),on Ubuntu 14.04.3 LTS Server (32-bit).
With the admin username and password,
I can use FileZilla to access the FTP server from another home PC, but I'm not…

伍柒貳
- 49
- 1
- 1
- 6
0
votes
1 answer
Error in uploading file to server java.lang.nullpointerexception connection is null exception
I am working on a java application. I recieve exception when I send a file to server. The error is: Error in connection =java.lang.NullPointerException
The code is below:
File file = new File(localFileFullName);
if (!(file.isDirectory()))…

Ravi Jat
- 11
- 1
- 6
0
votes
0 answers
symbol '_' in MySql request
When i decide to up proftpd server i have a problem with MySQL.
The problem was a syntax error (1064) which was caused by symbol '_' in MySql request.
Proftpd version:
ProFTPD Version 1.3.5
MySQL version:
mysql Ver 14.14 Distrib 5.5.43, for…

Yks
- 21
- 4
0
votes
1 answer
503 RNFR command not understood
I'm using a (cheap branded) local media station as an FTP server and I'm using FIleZilla to transfer files to it.
When I try to move or rename a file located on the media station, I'm getting
Command: RNFR [filename]
Response: 503 Command not…

Andrea de'Rose
- 57
- 1
- 9
0
votes
1 answer
Remotely accesing ftp server on pc
My problem is the following I want to develop and app that downloads some files in a ftp server(my laptop) which I could easily solve if I were on the same lan.
What can I do to connect by ftp to my laptop when the phone is connected to a different…

miraunpajaro
- 152
- 2
- 10