ASP FTP er nok det langt sikreste. Så at få det til at virke, ville nok være optimalt. Det går jeg i hvert fald ud fra. Men mon ikke vi kan hjælpe dig med at få det til at virke?
' Any string unlocks the component for the 1st 30-days. success = ftp.UnlockComponent("Anything") If (success <> 1) Then Response.Write ftp.LastErrorText & "<br>" End If
' The default data transfer mode is "Active" as opposed to "Passive". ' Change it to Passive by setting the Passive property: ftp.Passive = 0
' Connect and login to the FTP server. success = ftp.Connect() If (success <> 1) Then Response.Write ftp.LastErrorText & "<br>" End If
' Change to the remote directory where the file will be uploaded. success = ftp.ChangeRemoteDir("media") If (success <> 1) Then Response.Write ftp.LastErrorText & "<br>"
End If
' Upload a file. localFilename = "c:\ipnummer.txt" remoteFilename = "hamlet.xml"
If (success <> 1) Then Response.Write ftp.LastErrorText & "<br>" End If
ftp.Disconnect
Response.Write "File Uploaded!" & "<br>"
Set ftp = Nothing
Jeg kan sagtens forbinde til ftp'en men så snart jeg vil sende filen til serveren så går der 300 sekunder så får jeg en timeout og jeg får i ftpen denne fejl:
unable to connect:a connection attempt failed because the connected party did not properly respond after a period of time.
har du prøvet at ændre ftp.Passive = 0 til ftp.Passive = 1 Det er ikke alle netværk/firewalls der understøtter både active og passive ved FTP overførsler/connections
Tilladte BB-code-tags: [b]fed[/b] [i]kursiv[/i] [u]understreget[/u] Web- og emailadresser omdannes automatisk til links. Der sættes "nofollow" på alle links.