Showing Hidden Files in ProFTPD

Posted on Aug 31, 2010

Files that begin with a . (dot) are technically hidden and don’t show up in FTP clients such as FileZilla. To get get .htaccess files to show up alone with other hidden files add the following to the sections:

ListOptions "-la"

So the Global section should look like:

<Global>
  DefaultRoot           psacln
  AllowOverwrite        on
  ListOptions           "-la"
</Global>