I created ftp server by pureftpd on linux sever:
sudo apt-get install pure-ftpd
sudo bash
echo "yes" > /etc/pure-ftpd/conf/Daemonize
echo "yes" > /etc/pure-ftpd/conf/NoAnonymous
echo "yes" > /etc/pure-ftpd/conf/ChrootEveryone
echo "yes" > /etc/pure-ftpd/conf/IPV4Only
echo "no" > /etc/pure-ftpd/conf/ProhibitDotFilesWrite
but when I try to access to ftp from file explorer in Windows 10 by ftp://x.x.x.x
with username and password I get this error:
an error occurred while opening that folder on the ftp server
I gave the all permission to root folder, I add this line to configuration:
echo "10000 60000" > /etc/pure-ftpd/conf/PassivePortRange
sudo systemctl restart pure-ftpd
but still I get the same error. How can I solve this?