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

Retrieve user from user.properties

I am trying to set up a ftp server using apache ftp server http://mina.apache.org/ftpserver/ I want to use a file based management, and have only one user that can login. At first, I create the file this way : String username = "ftp"; String…
jlengrand
  • 12,152
  • 14
  • 57
  • 87
0
votes
1 answer

Proftpd completely hide directory

Within my ftp tree there is a directory that I don't want to be accessible via anonymous. I am able to hide the directory in question and all the files within the directory. What I have not been able to do is prevent somebody from navigating to…
Depmadra
  • 1
  • 1
  • 1
-1
votes
1 answer

Laravel 8 Controller not working in live server

working with laravel 8 project. in my localhost it is working properly. but when I host my project to live server (hostgrator) my controller not working here. I have following web.php route file use Illuminate\Support\Facades\Route; Route::get('/',…
maramodaya
  • 49
  • 8
-1
votes
1 answer

authenticate ftp users from sql database in c++

i have a messaging app written in c++ (qt) and now i want to add a library to move heavy media via ftp to a ftp server and give the link to other user to download it. the problem is there are to many users to create separate ftp accounts for all of…
Aligh2022
  • 1
  • 3
-1
votes
1 answer

FTP Server Authentication trouble

I am attempting to set up a simple FTP server. After creating the FTP server and setting up required parameters for anonymous authentication I still cannot access the directory. Upon hitting the ftp server through file explorer, I get this…
Eli
  • 533
  • 1
  • 5
  • 24
-1
votes
1 answer

Part of file in a ftp path can be downloaded but the others get error 550 using filezilla server and client

I tried to set a FileZilla FTP Server for my boss. When downloading files from FTP, we got error 550. I promise I had set all accession for that group, which means they should be able to do anything they want on that path. Fine, I set accession for…
-1
votes
1 answer

How give connect rights on OS X ftp server for non admin account user

To enable the FTP server on OS X, you have to load the FTP service like this: sudo -s launchctl load -w /System/Library/LaunchDaemons/ftp.plist To stop the service you need to unload the service with the same command: sudo -s launchctl unload -w…
JL M
  • 1,378
  • 1
  • 10
  • 14
-1
votes
1 answer

How it is working bool = DBConnection.getFTPConnection().storeFile(hostDir, input);

i am using this method to store the file.From computer to server but when i use this i am facing exception. 1. Software caused connection abort: recv failed 2. Software caused connection abort: socket write error 3.…
-1
votes
1 answer

how setup otp(two factor authentication) on IIS( ftp server)

Is there a way that we can set up One-Time-Password in iis? As a web server is possible (via isapi) but i couldn't find As a ftp server
Mafia1990
  • 23
  • 4
-1
votes
1 answer

Unknown command FEAT when accessing FTP server

I just created an FTP server based on the code provided here http://www.codeguru.com/csharp/csharp/cs_network/sockets/article.php/c7409/A-C-FTP-Server.htm . Then I installed Nuget packages for FtpClient, so that I can create a test FTP client which…
sanmis
  • 515
  • 1
  • 7
  • 22
-1
votes
2 answers

Please explain this Python based FTP server code

I was looking for FTP server implemented in Python and came across this https://gist.github.com/scturtle/1035886 . I tried to understand it but being a web developer and fairly new Python I found it confusing. Here's what I don't understand : From…
Shubham
  • 80
  • 2
  • 13
-1
votes
2 answers

Embedding an FTP Server in an App

I wanted to run an FTP server via an Android app, are there any open source FTP servers available so that I can use them in my app. The FTP server will be run as service, as per the settings set by the user.
Prathamesh Shetye
  • 915
  • 2
  • 8
  • 27
-2
votes
2 answers

FTP server Windows 8.1 error: 530 Login or password incorrect

I follow this video steps by steps to create a local FTP Server on Windows 8.1. They use IIS to make FTP sites and add a Windows local user to login. But at the end, when I go to the server's IP address and login (using FireFox), I got this error:…
BraveVN
  • 411
  • 5
  • 22
-2
votes
2 answers

How to upload xml files to FTP Server by using CFNetwork concept in iphone

How to upload xml files to FTP Server by using CFNetwork concept in iphone? Is there any sample project? Is there any openSource available?
GR.
  • 455
  • 1
  • 4
  • 18
-3
votes
1 answer

Netbeans + Git - The Basics

Our situation: We want to use git to manage our project files. So we've set up a unix server and installed git there. Then we created a dircetory and init a git repository. On our workplace (windows pc) we installed netbeans and git to use them…
Pete
  • 564
  • 4
  • 29
1 2 3
14
15