Admin-Ahead Community

Linux => General Linux => Topic started by: joseletk on April 14, 2018, 05:10:30 pm

Title: How to show hidden files in ProFTPd
Post by: joseletk on April 14, 2018, 05:10:30 pm
This is how you can enable hidden files(.htaccess) in ProFTPd.

Open proftpd.conf file and change ListOptions from -l to -a. Or if doesn’t exists add ListOptions -a to your proftpd.conf file.

Code: [Select]
# nano /etc/proftpd/proftpd.conf
Change:

Code: [Select]
# ListOptions "-l"
to:

Code: [Select]
# ListOptions "-a"
Now restart proftpd and it’s done.

Code: [Select]
/etc/init.d/proftpd restart
Stopping ftp server: proftpd.
Starting ftp server: proftpd.

================================================================================================