Hello,
when I try to upload a file with a ftp client or with the build in ftp solution from my editor, it look like this:
I found some article about this problem, the solution should be to use TLS/SSL
I changed my config file like used this instructions: http://kb.odin.com/en/2207
This is my Proftpd confog file:
	
	
	
		
I changed the Encryption option in my ftp client to: Explecit FTP using TLS
But I get the same error again.
but
				
			when I try to upload a file with a ftp client or with the build in ftp solution from my editor, it look like this:
PORT 192,168,188,22,253,21
200 PORT command successful
STOR index.html.new
425 Unable to build data connection: Keine Berechtigung
I found some article about this problem, the solution should be to use TLS/SSL
I changed my config file like used this instructions: http://kb.odin.com/en/2207
This is my Proftpd confog file:
		Code:
	
	ServerName                      "ProFTPD"
#ServerType                     standalone
ServerType                      inetd
DefaultServer                   on
<Global>
DefaultRoot     ~               psacln
AllowOverwrite          on
<IfModule mod_tls.c>
        # common settings for all virtual hosts
        TLSEngine on
        TLSLog /var/log/plesk/ftp_tls.log
        TLSProtocol SSLv23
        TLSRequired off
        TLSRSACertificateFile /usr/local/psa/admin/conf/httpsd.pem
        TLSRSACertificateKeyFile /usr/local/psa/admin/conf/httpsd.pem
        # Authenticate clients that want to use FTP over TLS?
        TLSVerifyClient off
        # Allow SSL/TLS renegotiations when the client requests them, but
        # do not force the renegotations.  Some clients do not support
        # SSL/TLS renegotiations; when mod_tls forces a renegotiation, these
        # clients will close the data connection, or there will be a timeout
        # on an idle data connection.
        TLSRenegotiate required off
        # As of ProFTPD 1.3.3rc1, mod_tls only accepts SSL/TLS data connections
        # that reuse the SSL session of the control connection, as a security measure.
        # Unfortunately, there are some clients (e.g. curl) which do not reuse SSL sessions.
        #TLSOptions NoSessionReuseRequired
</IfModule>
</Global>
DefaultTransferMode     binary
UseFtpUsers                     on
TimesGMT                        off
SetEnv TZ :/etc/localtime
# Port 21 is the standard FTP port.
Port                            21
# Umask 022 is a good standard umask to prevent new dirs and files
# from being group and world writable.
Umask                           022
# To prevent DoS attacks, set the maximum number of child processes
# to 30.  If you need to allow more than 30 concurrent connections
# at once, simply increase this value.  Note that this ONLY works
in standalone mode, in inetd mode you should use an inetd server
# that allows you to limit maximum number of processes per service
# (such as xinetd)
MaxInstances                    30
#Following part of this config file were generate by PSA automatically
#Any changes in this part will be overwritten by next manipulation
#with Anonymous FTP feature in PSA control panel.
#Include directive should point to place where FTP Virtual Hosts configurations
#preserved
ScoreboardFile /var/run/proftpd.scoreboard
# Primary log file mest be outside of system logrotate province
TransferLog /var/log/plesk/xferlog
#Change default group for new files and directories in vhosts dir to psacln
<Directory /var/www/vhosts>
        GroupOwner      psacln
</Directory>
# Enable PAM authentication
AuthPAM on
AuthPAMConfig proftpd
IdentLookups off
UseReverseDNS off
AuthGroupFile   /etc/group
Include /etc/proftpd.d/*.confI changed the Encryption option in my ftp client to: Explecit FTP using TLS
But I get the same error again.
but
 
 
		