Note that sftp.sonic.net (which supports the sftp protocol) is just an alias for shell.sonic.net, the machine that will be going away next month.
ftp.sonic.net (which, per Kelsey earlier in this thread, supports "ftp over explicit ssl") is a different machine and will still be supported
curlftpfs looks interesting, I may check that out as well.
Another thing I noticed when playing around with all this:
I've always gotten to my web space on the shell server via ~/public_html/ which was linked to /home/www_pages/<username>/
/home/www_pages/ is itself a link to /web/
On the ftp server the /home/www_pages/ link does not exist, but /home/WWW_pages/ does. (The shell server has both.)
So I changed the link from my home directory to use the version with capital letters, so it would work on both the shell server and the ftp server:
unlink public_html
ln -s /home/WWW_pages/<username>/ public_html
ftp.sonic.net (which, per Kelsey earlier in this thread, supports "ftp over explicit ssl") is a different machine and will still be supported
curlftpfs looks interesting, I may check that out as well.
Another thing I noticed when playing around with all this:
I've always gotten to my web space on the shell server via ~/public_html/ which was linked to /home/www_pages/<username>/
/home/www_pages/ is itself a link to /web/
On the ftp server the /home/www_pages/ link does not exist, but /home/WWW_pages/ does. (The shell server has both.)
So I changed the link from my home directory to use the version with capital letters, so it would work on both the shell server and the ftp server:
unlink public_html
ln -s /home/WWW_pages/<username>/ public_html