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, $programname, "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, $programname, "Konnte keine FTP Verbindung öffnen, bitte erneut starten. Eventuell auch mal Receiver zuerst neu starten und nochmal probieren.")
  Exit
EndIf
; /etc/tuxbox/config verzeichnis erstellen falls nicht vorhanden
; /usr/script erstellen falls nicht vorhanden
_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?

Edited by Braese
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...