Change Kloxo FTP port
Many people ask me personally about it, because lately there are many malware injecting php and javascript files by using ftp port. Eventhough it is short answer how to do it but I decide to write this post. I hope it will help you guys.
Many VPS (Virtual Private Server) is using Kloxo as Control Panel.
Kloxo […]
Chmod authorization Proftpd
Sometimes we need to configures manually all the chmod of each files and directories.
You can configure each ftp accounts from enable / disable chmod using directives on proftpd.conf
<Limit SITE_CHMOD>
AllowUser ftpadmin
DenyAll
</Limit>
Above directives mean that only ftpadmin user can use chmod, anyone else denied.
To be able all ftp user use chmod :
<Limit SITE_CHMOD>
AllowAll
</Limit>
Save proftpd.conf and reload the […]