Pure-FTPd [TLS] Login problem

Hello everybody

Recently I installed Pure-FTPd and i tried to connect to my server and i try to login using my ID/PW i got always anonymous login....

here what i got,

# ftp
ftp> open localhost
Trying 127.0.0.1...
Connected to localhost.
220---------- Welcome to Pure-FTPd [TLS] ----------
220-You are user number 1 of 10 allowed.
220-Local time is now 11:52. Server port: 21.
220-Only anonymous FTP is allowed here
220-IPv6 connections are also welcome on this server.
220 You will be disconnected after 15 minutes of inactivity.
Name (localhost:zxin10): zxin10
230 Anonymous user logged in
Remote system type is UNIX.
Using binary mode to transfer files.
ftp>

i did this

pure-pw useradd zxin10 -f /etc/pure-ftpd/pureftpd.passwd -u zxin10 -g zxin10 -d /home/zxin10/ftpyy

pure-pw mkdb

/etc/init.d/pure-ftpd restart

cat pureftpd.passwd
zxin10:$2a$07$q6KJaZEupYXQe5vKoZYroua/wur9WYd/JAp3xwld33NVcRv/HSIf6:1002:100::/home/zxin10/ftpyy/./::::::::::::

and i always got the same problem above

Thank you

---------- Post updated 13th Apr 2012 at 10:18 AM ---------- Previous update was 12th Apr 2012 at 11:59 AM ----------

finally i find the solution

reinstllation

wget ftp://ftp.pureftpd.org/pub/pure-ftpd/releases/pure-ftpd-1.0.36.tar.gz
tar zxvf pure-ftpd-1.0.36.tar.gz
cd pure-ftpd*
./configure --with-everything
make install-strip

then i changed
vi /etc/pure-ftpd/pure-ftpd.conf

# Don't allow authenticated users - have a public anonymous FTP only.
# AnonymousOnly               yes

# Disallow anonymous connections. Only allow authenticated users.
NoAnonymous                 yes

# PureDB user database (see README.Virtual-Users)
PureDB                        /etc/pure-ftpd/pureftpd.pdb

Thank you