I am having problems with the following pseudocode:
if user's remote server login/password valid{
sftp file to remote server
}else{
throw an error
}
Basically my application uses ftp currently to do this. The user enters in his/her login and password to copy a file from the local server to a specified remote server on the front end. I am not sure if it is feasible or not to do this with SFTP. Thanks.
if user's remote server login/password valid{
sftp file to remote server
}else{
throw an error
}
Basically my application uses ftp currently to do this. The user enters in his/her login and password to copy a file from the local server to a specified remote server on the front end. I am not sure if it is feasible or not to do this with SFTP. Thanks.