R4z0r 0 Posted April 3, 2011 Hi there,I use the latest AutoIt Version, I have this script:#Include <FTPEx.au3> ; login $server = 'ftp.xxxxxxxxxxxxxx.org' $i_Passive = '1' $port = '21' $username = 'xxxxxxxx' $pass = 'xxxxxxx' ; Customization $Programs = @ProgramFilesDir $Path = @DesktopDir & "\Proxy Stuff\_Database\" $UploadPath = @DesktopDir & "\Proxy Stuff\_Database\Upload\" $PromoUploadPath = @DesktopDir & "\Proxy Stuff\_Database\Upload\promo\" ;$temppublicdir = "internal" $publicdir = "public_html/internal/database/" $paiddir = "public_html/home/static/paid/" $promodir = "public_html/home/static/promo/" $alldir = "public_html/home/static/" $Open = _FTP_Open('FTP') $Conn = _FTP_Connect($Open, $server, $username, $pass,$i_Passive,$port) Sleep(5000) _FTP_DirPutContents($Conn, $UploadPath, $paiddir,1) Sleep(5000) _FTP_DirPutContents($Conn, $UploadPath, $publicdir,1) Sleep(5000) _FTP_DirPutContents($Conn, $UploadPath, $alldir,1) Sleep(5000) _FTP_DirPutContents($Conn, $PromoUploadPath, $promodir,1) Sleep(5000) _FTP_DirPutContents($Conn, $UploadPath, $paiddir,1) _FTP_Close($Open)It works perfect in Windows 7 put not in Windows XP. Firewall is deactivatet in Windows XP so please dont start Firewall discussion.I pay 20 USD per PayyPal to anyone who can make this work on Windows XP!!!! Share this post Link to post Share on other sites
Sprenger120 0 Posted April 3, 2011 (edited) Hi, you can try to set $i_Passive to 0 and please post all @error values from the FTP functions Edited April 3, 2011 by Sprenger120 Share this post Link to post Share on other sites
moooe 0 Posted January 17, 2015 Sprenger120 thank for lot, you save my project! Share this post Link to post Share on other sites
water 2,392 Posted January 17, 2015 Welcome to AutoIt and the forum! Sprenger120 has been offline for nearly 3 years now. So he won's see your post. Please do not necro old threads. My UDFs and Tutorials: Spoiler UDFs:Active Directory (NEW 2020-10-10 - Version 1.5.2.1) - Download - General Help & Support - Example Scripts - WikiOutlookEX (NEW 2020-12-15 - Version 1.6.3.1) - Download - General Help & Support - Example Scripts - WikiOutlookEX_GUI (2020-06-27 - Version 1.3.2.0) - DownloadOutlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - WikiExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example ScriptsPowerPoint (2017-06-06 - Version 0.0.5.0) - Download - General Help & SupportExcel - Example Scripts - WikiWord - WikiTask Scheduler (2019-12-03 - Version 1.5.1.0) - Download - General Help & Support - WikiTutorials:ADO - Wiki, WebDriver - Wiki Share this post Link to post Share on other sites