Real life problems solved

Advert

Install vsftpd on Fedora 14 for WordPress installs

Install vsftp

yum install vsftpd

Configure vsftpd

vi /etc/vsftpd/vsftpd.conf

Turn off anon access:

anonymous_enable=NO

Start vsftpd

/etc/init.d/vsftpd start
chkconfig vsftpd on

Add vsftpd user

Add a user to ftp to the wordpress folder:

useradd ftpwordpress -d /var/www/sites/wordpress
passwd ftpwordpress
Adsense