
Simple FTPServer : the easy solution to get your remote FTP Server for Bukkit !
What is it ?
Simple FTPServer create a FTPserver for the root directory of your Bukkit server. It is and works like a basic plugin. With this FTP access, you can make backups, get ou put files, explore directories...
Commands and Permissions
Main node for permissions is <ftp.main>. It allows to get help.
- /ftpserver start
- -> description : Start the FTP server after /ftpserver stop
- -> permission : <ftp.start>
- /ftpserver stop
- -> description : Stop the FTP server
- -> permission : <ftp.stop>
- /ftpserver suspend
- -> description : Suspend the FTP server exection. Need /ftpserver resume to enable server
- -> permission : <ftp.suspend>
- /ftpserver resume
- -> description : Resume after /ftpserver suspend
- -> permission : <ftp.resume>
Configuration : config.yml
conf_version: 1
lang: en
debug: false
ftp_port: 22221
ftp_user:
- pseudo: admin
password: password
can_write: 'true'
- pseudo: steve
password: password
can_write: 'false'
- conf_version : only use to manage configuration update
- lang : select language. avariable : [en|fr]
- debug : line for developers and testers
- ftp_port : port where is started the listener
- ftp_user: list of users, with password and permissions (For instance, the default config enables 2 users : admin and steve. Don't forget to change it!)
Other Projects :