Wing FTP Server



Automatic FTP synchronization (server to server transfer)

Wing Ftp Server Port

You can do it waterboy. Vce exam simulator 2.6 1 free download. Fri Dec 07, 2012 10:18 am

Wing FTP Server

Free Ftp Server Windows 10

Wing FTP Server Online Demo. We set up an online demo server for you to explore the new features available in Wing FTP Server. You can explore both Web-based Administration and Web-based Client. Demo for Web-based Administration: Location: Username: demo-admin; Password: demo-admin; Demo for Web-based Client. How to download encarta kids. Working direct download link of Wing FTP Server with resume support. Download at breakneck speeds for free only from Softpaz - https://www.softpaz.com/softwa.

Ftp Server

-- Description: Automatic FTP synchronization or backup (server to server transfer)
-- You should add the below scripts to the event manager -> FTP or HTTP OnFileUploaded
-- When a file is uploaded, it can be sent to one or two or even more FTP servers automatically
-- Author: Luke
-- Date: 2012-10-07
Code:
require('socket.ftp')
require('socket.ltn12')
--send the file to the first FTP server
f, e = put{
host = '192.168.0.100',
user = 'user1',
password = 'pass1',
port = 21,
argument = '/%FileName',
source = source.file(io.open('%PathName', 'rb'))
}
--send the file to the second FTP server
f, e = put{
host = '192.168.0.105',
user = 'user2',
password = 'pass2',
port = 21,
argument = '/ftpfolder/%FileName',
source = source.file(io.open('%PathName', 'rb'))
}

The above scripts use a modified version of luasocket library, you can download and unzip it into the working directory of Wing FTP Server. The download URL: https://www.wftpserver.com/bbsres/socket.zip