Braese Posted October 11, 2011 Posted October 11, 2011 I coded some FTP thing, update files on different ftp servers. All is working but from today on, nothing is working anymore, not my script, not the simplest script lol, especially if i compile it. Simple: ; ftp connect $Open = _FTP_Open('Konverter') If @error Then MsgBox(16, "", "Konnte keine FTP Verbindung öffnen, bitte erneut starten. Eventuell auch mal Receiver zuerst neu starten und nochmal probieren.") Exit EndIf $Conn = _FTP_Connect($Open, $getip, $getuser, $getpwd, 1, 22) If @error Then MsgBox(16, "", "Konnte keine FTP Verbindung öffnen, bitte erneut starten. Eventuell auch mal Receiver zuerst neu starten und nochmal probieren.") Exit EndIf _FTP_DirCreate($Conn, "/etc/tuxbox/config") _FTP_DirCreate($Conn, "/usr/script") There is a gui before, but really nothing special, only a input box for password and ip and a button to start it. I restarted Windows several times but none... Any Help? Any Hints?
4Eyes Posted October 12, 2011 Posted October 12, 2011 Well, to start with you're missing the 2nd " and a closing ) This: MsgBox(16, "", "Konnte keine FTP Verbindung Should be: MsgBox(16, "", "Konnte keine FTP Verbindung") After that I dunno. The first thing is can you ftp to the site via Internet Explorer?
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now