Jump to content

Strange AutoIT Problem


Braese
 Share

Recommended Posts

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?

Link to comment
Share on other sites

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?

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...