Questions tagged [ftp-server]

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.

225 questions
0
votes
2 answers

How to show "site under maintenance" message while uploading files on live server?

My web-site is live on server. So many users visits daily on my live server. So whatever the next developing module works on my local server. But when its development done and I will try to upload my local file data on live server then some user,…
Nilesh Dharmik
  • 349
  • 3
  • 13
0
votes
1 answer

FTPClient unable to parse LIST response from Apache FTPServer

While trying to perform a listFiles() command using Apache Commons Net 3.3 FTPSClient against an Mina's Apache FTP Server parsing of the listing fails. I've done some debugging and the entries attribute on FTPListParseEngine after reading the server…
Fer Troya
  • 25
  • 6
0
votes
1 answer

How to configure SLF4J in Apache MINA

We are using the Apache FTPServer library which in turn uses MINA in a project as 3rd party libraries. MINA is using SLF4J for logging. I am wondering how I can redirect the logging output of MINA to our own standard log files, which are using…
martin_wun
  • 1,599
  • 1
  • 15
  • 33
0
votes
1 answer

Linux PC: How to let other Linux devices copy files

My application running under Linux creates four to seven data files in a directory whose name includes the client and datetime.These need to be copied by other devices - usually a Linux PC/laptop and potentially an Android phone. Currently the…
MichaelJohn
  • 185
  • 3
  • 15
0
votes
1 answer

FTP server does not handle '\r\n' correctly

I would like to please you guys for an advice. I want to write FTP client in C/C++, I don't want to use some already written libraries, so I decided to write it all on my own. But I am facing a small problem right now. During sending any data on…
ProXicT
  • 1,903
  • 3
  • 22
  • 46
0
votes
1 answer

Implementing own ftp-server: response on LIST command

I'm trying to implement my own ftp-server without any libraries on Java. For testing my server I use FTP-client FileZilla. The problem is that I can't send list of files in the current directory through data connection (or in other words I can't…
0
votes
0 answers

Smart and customizable FTP server to grab client request and run shell script on server side

I don't know if this is the right place to ask a suggestion but I would have a trial. I have a need to allow an FTP client to connect to a server requesting to download a file that does not exists but has instead to be created on demand. Or…
Stefano Radaelli
  • 1,088
  • 2
  • 15
  • 35
0
votes
1 answer

File transfer over unreliable and slow connection with c#

I am looking for a way to transfer a lot of files over a long period of time from a client to a server. The connection between the client and the server is not reliable and slow. I thought about using the FTP protocol. I saw the netftp client. I now…
Lee
  • 781
  • 2
  • 11
  • 31
0
votes
2 answers

Understanding "create a virtual filesystem which allows mapping of arbitrary directories" for FTP server project

Disclaimer: This is homework; I don't want a solution. Also, no libraries outside c/c++ standard libraries are available. I'm looking for a push in the right direction to understand what this portion of work from my assigned semester project (create…
ironicaldiction
  • 1,200
  • 4
  • 12
  • 27
0
votes
2 answers

upload files to an FTPS server

I am trying to upload files to an FTP server (FTPS). Running the following code produces the exception: The remote certificate is invalid according to the validation procedure. The code: static void Main(string[] args) { FTPFactory ftp =…
David Munsa
  • 885
  • 1
  • 16
  • 30
0
votes
1 answer

Unable to uploading .class file on server using FTP java

I want to upload a .class file (ABC.class) on server using FTP. Tried: 1> public boolean uploadFileOnFTPServer(File file, String uploadToPath) { boolean isUploaded = false; try { FileInputStream bis = new FileInputStream(file); …
Neha S
  • 283
  • 1
  • 3
  • 17
0
votes
1 answer

pyftpdlib only one usage for each socket address

I am using python 2.7.2 on a windows 7 machine. my code: from multiprocessing import Process def dummy_ftp_server(local_interface, username, password, homedir, perms): from pyftpdlib.authorizers import DummyAuthorizer from…
yossi
  • 12,945
  • 28
  • 84
  • 110
0
votes
0 answers

How to grab all files of FTP server?

The condition is my college has a ftp server where my lecture slides and other files are kept. I have to download each file by right clicking it and 'save as'. I tried using utility software to download folders from ftp server or keeping the address…
0
votes
2 answers

event.bytesTotal returning 0 in ProgressEvent.PROGRESS

I am getting the result for event.bytesTotal = 0 in some of the mp3 file when i am loading it from ftp server.But when loading the same file from local server, the call to event.bytesTotal is working well - giving the expected result. Here is my…
Kaif
  • 131
  • 1
  • 12
0
votes
2 answers

AsyncTask on ftp project

I have problem with asynctasks blocking UI when task download metafile from FTP server. [Main.class] FragmentActivity @Override public void onClick(View view) { TestSettings(); // TODO do usunięcia z kodu String password =…
Nerus
  • 167
  • 1
  • 2
  • 13