I used Amaya to create some of my web-pages.
I use FUSE and FuseFTP so that I can access files on my web-host's ftp-server in exactly the same way I access local files on my Linux system. For example; FUSE allows me to use a regular file manager (rather than a special FTP application) to copy web-pages onto my web-host's ftp-server!
fuseftp --ask-password ~/mnt/website my_username@ftp.shaneharper.net
(The remote files appear under the ~/mnt/website directory.)
(cd ~/website; find . -mmin -120 -type f | xargs tar cf - ) | (cd
~/mnt/website; tar xvf - )
Last Update: 26 January 2006