I've got the script up and running, the problem I'm running into is this...
The login for my website's ftp server is this format username@username.com
#FTP Hostname
FTP_HOST="ftp.mydomain.com"
#FTP Username
FTP_USER="username@mydomain.com"
#FTP Password
FTP_PASS="password"
and I get an error message like this
ftp: Unknown port `password@ftp.mydomain.com' in URL `ftp://username@mydomain.com:password@ftp.mydomain.com/'
I understand the error message, I just don't know how to work around it. I know its probably just a stupid little thing I'm missing or not grasping.
I know if my username was just "username" rather than "username@mydomain.com" I would have this working. Any help would be appreciated.