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
1
vote
1 answer
Require a login and password for writing in the FileZilla server, but not in the reading
I'm working on a android application that writes, in some parts, in a FileZilla server. In my code, I provide the login and password for the FileZilla so that the client could send some pictures and videos to it.
The client later on needs to read…

ashabasa
- 311
- 2
- 9
- 20
1
vote
1 answer
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 the client. I partially succeeded in doing that but…

user2274361
- 47
- 6
1
vote
1 answer
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 certain doubts. Here is my file transfer function…

user2274361
- 47
- 6
1
vote
0 answers
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 out that my program can't connect to ftp server and…

Edward Grigoryan
- 11
- 2
1
vote
2 answers
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, and another part write, read, create and…

GP89
- 6,600
- 4
- 36
- 64
1
vote
1 answer
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 I didn't but had to parse any ways which lead to…

retrohacker
- 3,194
- 4
- 21
- 31
1
vote
1 answer
How to compress multiple images and upload in FTP server from iPhone app?
I am developing iPhone app for take photo and upload the photo in FTP server. From the app i want to compress nearly 25 photos taken by the user and upload the compressed photos in FTP server. Can anyone please guide me to compress the images(Like…

Gopinath
- 5,392
- 21
- 64
- 97
0
votes
1 answer
Programmable ftp server
We have a need to set up a ftp server. Many clients will upload files regularly. Each client will use a different ftp account. We will be called by an external system to provision a new client - we can either take username/password from the external…

The Archetypal Paul
- 41,321
- 20
- 104
- 134
0
votes
2 answers
Error while Running website on ftp server
I have a asp.net Website with msaccess database and c# .The Site run on IIS server Normaly but when i upload it to the ftp server then it display the folowing error
"The 'Microsoft.ACE.OLEDB.12.0' provider is not registered on the local…

Adeel Aslam
- 1,285
- 10
- 36
- 69
0
votes
2 answers
Base URL for CodeIgniter installation
I have an FTP server (abc.xyz.com), and I want to install CodeIgniter in the ftp server. I followed the instructions at, CodeIgniter Installation for installing it.
I used FileZilla to copy CI to the root directory of the ftp server. But In Step 3)…

SyncMaster
- 9,754
- 34
- 94
- 137
0
votes
1 answer
ProFTPd MySQL setup
I'm trying to install ProFTPd with MySQL on Ubuntu server 11.10 64-bit. But I cannot login, always showing 'Login Incorrect'
This is my sql.conf file:
# add the following lines to the file (don't need to remove comments from it)
DefaultRoot ~
#…

n00bi3
- 75
- 1
- 1
- 7
0
votes
0 answers
Publish ASP.NET website from Visual Studio
When I publish my website in the public.html folder the website doesn't open. I get a "forbidden" error. Is it because the project is published with .cshtml extensions? Or is it something else.
My website doesn't have an index page, I changed the…

Jordi Schoetens
- 1
- 1
0
votes
0 answers
Unable to upload a file to a python FTP server running locally on Windows 10
I'm running a FTP server with the below python code in a docker container on windows 10.
import os
from pyftpdlib.authorizers import DummyAuthorizer
from pyftpdlib.handlers import FTPHandler
from pyftpdlib.servers import FTPServer
FTP_PORT =…

Ram S
- 25
- 4
0
votes
0 answers
ClickOnce Deployment, How to Prompt Users with Changelog After App Update?
I'm using ClickOnce deployment (and an FTP server from Bluehost) for my.NET project, I want to implement a way to inform users about the changes/modifications I made whenever they open the application after an update. I've attempted to use a…

Moishy
- 1
- 2
0
votes
0 answers
FTPS Client-Server TLS Handshake Cipher Suite Issue
I am working on a FTPS Client which supports the TLS Cipher Suites as…

Bilal Chaudry
- 1
- 1