Rederick Posted March 6, 2006 Share Posted March 6, 2006 Hi, I have a script that simply downloads five files from an ftp server.I do this [code]$ftp_server = "example.com";$ftp_user_name = "username";$ftp_user_pass = "pass";// set up basic connection$conn_id = ftp_connect($ftp_server);// login with username and password$login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass);ftp_cdup($conn_id);ftp_chdir($conn_id, "directory/subdirectory");$server_file = "serverfile.zip";$local_file = "localfile.zip";ftp_get($conn_id, $local_file, $server_file, FTP_BINARY);[/code]Which was working for a while then now the server seems to be losing my authentication, and it is asking the script to send autentication again, then it doesn't and the script is unable to complete the dowload.My Question is, is there a way to force that the authentication to the FTP Server stays for the entire time the script runs, or somehow check if it needs to be resent.Thanks for any Advice..Red. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.