Please check your FTP Host settings and try again (leave FTP Host BLANK for local backups).'; backupbreeze_preflight_problem( $trouble ); } $result = ftp_login( $conn, $user, $pass ); if ( ! $result ) { $trouble = 'I could not log in to your FTP server.
Please check your FTP Username and Password, then try again.
For local backups, please leave the FTP Host option BLANK.'; backupbreeze_preflight_problem( $trouble ); } $success = ftp_chdir( $conn, $subdir ); if ( ! $success ) { $trouble = 'I cannot change into the FTP subdirectory you specified. Does it exist?
You must create it first using an FTP client like FileZilla.
Please check and try again.'; backupbreeze_preflight_problem( $trouble ); } } } }