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
3 answers

Can I create a SQL database on an ftp server?

I have the credentials to login to a server via ftp, and from here I want to create a SQL database. Can I do this, and if so how? Thank you.
KateMak
  • 1,619
  • 6
  • 26
  • 42
0
votes
1 answer

Client behaviour when aborting data transfer on ftp server

Well, I am writing a multithreaded FTP server and now I am trying to implement data transfer abortion. This is a part of my code managing data transfer abortion. ABORCommand(); //sends message with code 226 (1st message) pthread_join(threads, &ret);…
0
votes
1 answer

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 can I fix the code? Is there another…
Nilesh Agrawal
  • 3,002
  • 10
  • 26
  • 54
0
votes
1 answer

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
0
votes
1 answer

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 the working directory. Everything works fine (ftp…
Julien Fouilhé
  • 2,583
  • 3
  • 30
  • 56
0
votes
1 answer

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, the app creates an ftp user account with the same…
0
votes
1 answer

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 directory, but more importantly, i want a meaningful…
Martin Nielsen
  • 1,865
  • 6
  • 30
  • 54
0
votes
2 answers

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 = ftNew.makeDirectory("/"+folderName+"/Archive"); But…
Gapchoos
  • 1,422
  • 5
  • 20
  • 40
0
votes
1 answer

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 on client side I have a C# ftp client which I use…
ganesh
  • 1,006
  • 14
  • 30
0
votes
1 answer

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 say which commands can follow REST. I assume it's…
sashoalm
  • 75,001
  • 122
  • 434
  • 781
0
votes
1 answer

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. 10.203.200.136:62408 ==> 220 pyftpdlib 0.5.2…
Confused
  • 617
  • 1
  • 9
  • 17
0
votes
1 answer

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 custom code(c# coding) redirecting where i want…
Vivek Misra
  • 265
  • 4
  • 13
0
votes
2 answers

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 06:10 Tor Browser -rw-rw-rw- 1 ftp ftp …
0
votes
1 answer

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 files to be downloaded at local side. I have referred…
Krunal
  • 1,318
  • 1
  • 13
  • 31
0
votes
2 answers

Unsuccessful upload to a ftp server on Linux using Qt![File zero size at destination]

I am trying to upload a file to a FTP server, which is a local server created by vsftpd. I have set necessary parameters needed for connecting and transferring files in the vsftpd.conf file. My requirement is to upload a file to this server. When i…
ScarCode
  • 3,074
  • 3
  • 19
  • 32
1 2 3
14
15