Get your server issues fixed by our experts for a price starting at just 25 USD/Hour. Click here to register and open a ticket with us now!

Author Topic: How to show hidden files in ProFTPd  (Read 1951 times)

0 Members and 1 Guest are viewing this topic.

joseletk

  • Guest
How to show hidden files in ProFTPd
« 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.

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