Installing WordPress and phpBB was one of the reasons behind implementing the new PutTree in Chilkat FTP-2. Here is a sample VBScript that copies the phpBB directory tree (as downloaded from www.phpbb.com) to a remote FTP directory:
set ftp = CreateObject("ChilkatFtp2.ChilkatFtp2″)
ftp.UnlockComponent "30-day trial"
ftp.Username = "myLogin"
ftp.Password = "myPassword"
ftp.Hostname = "something.someforum.com"
ftp.Connect
ftp.CreateRemoteDir "phpBB"
ftp.ChangeRemoteDir "phpBB"
‘ Copy the local directory tree into the current remote directory.
ftp.PutTree "c:/phpBB2″