You may have seen from my other posts my hosting provider IONOS is no longer supporting FTP uploads from the end of the year which meant an end to my WeatherCat station.
However I have a workaround.
I set up a Raspberry Pi with the latest Bullseye OS and installed the FTP Server vsftpd using the instructions here.
https://phoenixnap.com/kb/raspberry-pi-ftp-server and pointed WC at this server - all FTP uploads are now local.
I then created some SSH keys so I could uses password less uploads to my server.
ssh-keygen and then copy the keys to my server ssh-copy-id [username]@[ip address]
Then is was a simple matter of using RSYNC in a batch file called via a cronjob to copy the files to my server.
rsync -a /home/pi/[FTP Directory] username@host:[Remote Directory]