I used Amaya to create some of my web-pages.
I use CurlFtpFS. CurlFtpFS makes files on my web-host appear exactly like files stored locally on my Linux PC.
curlftpfs ftp://username:password@shaneharper.net/ ~/mnt/website
To unmount: fusermount -u ~/mnt/website
(cd ~/website/site; find . -mmin -120 -type f | xargs tar cf - ) | (cd ~/mnt/website; tar xvf - )
Note that the command above won't delete files on the web-host that no longer exist locally.
Last Update: 21 May 2009