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
133
votes
9 answers

One line ftp server in python

Is it possible to have a one line command in python to do a simple ftp server? I'd like to be able to do this as quick and temporary way to transfer files to a linux box without having to install a ftp server. Preferably a way using built in python…
zio
  • 2,145
  • 4
  • 21
  • 25
23
votes
1 answer

Writing a Java FTP server

I am trying to write a code that opens an FTP server on my stand-alone so I could copy file from it to a client in another computer and the opposite, but I am very new to server side programming and don't understand how. I got the Apache FtpServer…
moshe
  • 439
  • 2
  • 6
  • 16
12
votes
9 answers

500 OOPS: cannot open config file:/etc/vsftpd/vsftpd.conf

I don't know why it cannot open config file. $ ll /etc/vsftpd/vsftpd.conf -rw-r--r-- 1 xuehui1 root 4182 Aug 20 2012 /etc/vsftpd/vsftpd.conf //exits $ sudo /usr/sbin/vsftpd /etc/vsftpd/vsftpd.conf 500 OOPS: cannot open config…
ahuigo
  • 2,929
  • 2
  • 25
  • 45
11
votes
4 answers

Python ftplib.error_perm: 530 Login authentication failed

I want to write a script to connect my FTP server , but it can not work for me. from ftplib import FTP ftp=FTP() ftp.set_debuglevel(2) ftp.connect('192.169.137.100') ftp.login('test','test') ftp.dir() ftp.close() and when build this script, I got…
allen-x
  • 111
  • 1
  • 1
  • 5
10
votes
2 answers

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? And whats the difference between normal and passive…
BackSlash
  • 21,927
  • 22
  • 96
  • 136
10
votes
3 answers

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 for the FTP server on the Linux? Is there any…
Learner
  • 4,661
  • 9
  • 56
  • 102
9
votes
3 answers

FTP server using S3 as storage

I am trying to create a ftp server ( using windows/linux/mac - no concern) which would have its storage as a Amazon S3 storage. Now note that S3 does not support FTP natively so this would need some kind of hack as a solution. I researched about the…
Scooby
  • 3,371
  • 8
  • 44
  • 84
6
votes
1 answer

How to limit speed of retrieved files with IndyFtpServer (v10)

I'm developing a FTP Server with Delphi XE 6 and Indy10. The problem is that i need to limit the speed of download (must be configurable Ex. 1 KB/s, 1 MB/s, etc.) and i don't make it work. I know some props like BitsPerSec, etc. but this only affect…
Wo_0NDeR ᵀᴹ
  • 563
  • 5
  • 16
6
votes
3 answers

Simple code for FTP Server in python

I want to built a simple FTP server in python which will serve the client in just downloading a text file. Can any one kindly help me by suggesting the best study material to refer and help me finding some code snippets.
Nilesh Nar
  • 169
  • 3
  • 3
  • 9
6
votes
2 answers

Uploading file from SD Card to FileZilla Server

My application is uploading the file from SD Card to the directory on FileZilla FTP Server. After running my appliaction it gives me exception which I am unable to resolve after so many searches. here is the log cat output: 06-24 11:06:53.715:…
Adi
  • 111
  • 1
  • 11
5
votes
2 answers

Azure cloud service embedded FTP server

I want to host an embedded FTP server inside an Azure cloud service worker role. To provide passive access to the FTP server, it uses port range 20000-21000. Inside the ServiceDefinition.csdef I define all needed ports (see screenshot). The main…
Steffen Mangold
  • 1,184
  • 1
  • 20
  • 39
5
votes
3 answers

Upload files to ftp server using cakephp?

Is there anyway to upload files to an ftp server using cakephp?
Cocco
  • 129
  • 1
  • 2
  • 7
5
votes
1 answer

FTP Client keeps getting denied permission to upload by Server

I am trying to write an FTP Client and Server that will allow me to send a file from the client to the server via anonymous FTP. However, I keep getting 550 Permission Denied. I am able to do other things like download a file from the server, or get…
NspectorHector
  • 143
  • 1
  • 8
4
votes
1 answer

How to build a deployment package in Visual Studio 2010 without ftpServer tag?

Everytime I right click in my Web project to build deployment package, it generates a zip file. This zip contains a file named: - archive.xml the problem is that when this file is generated, its content has this tag:
Junior Mayhé
  • 16,144
  • 26
  • 115
  • 161
4
votes
4 answers

Can I use git to manage a website even if other people update it without using git?

So let's say I got a web server that I can access over ftp. Most people update it using dreamweaver, and I update by basically copying and pasting manually between my computer and the server. My question is, can I use git to manage the site (and not…
PyRulez
  • 10,513
  • 10
  • 42
  • 87
1
2 3
14 15