Schedule a Publish with FP

  • Thread starter Thread starter PinkBishop
  • Start date Start date
P

PinkBishop

Is there a way to schedule a publish of a FP web? I am looking for a
way to automatically do a backup using the FP publish for about 24
webs on a regular basis.
 
At one time, I believe www.jimcosoftware.com had an addin to do this, but
they don't appear to have it anymore. I'm not aware of any method to do
this.
--
===
Tom [Pepper] Willett
Microsoft MVP - FrontPage
---
FrontPage Support:
http://www.frontpagemvps.com/

About FrontPage 2003:
http://office.microsoft.com/home/office.aspx?assetid=FX01085802
===
|
|
| Is there a way to schedule a publish of a FP web? I am looking for a
| way to automatically do a backup using the FP publish for about 24
| webs on a regular basis.
 
If you have FTP access to the site, and both the FTP server and your FTP
client program both support this command:

MGET /RECURSIVE

then you can schedule an FTP job on the receiving computer. Just make sure
never to use FTP for updating the remote site.

Otherwise, perhaps just backing up one critical folder, or just a few
critical files would be enough. For example, it might be sufficient to just
back up your data collection and/or database files. If so, you can use any
FTP server and client, or the "curl" program from http://curl.haxx.se/

(Curl is a command-line program that, among other things, can retrieve files
by HTTP and save them to disk.)

In either case (curl or FTP) you would typically put the commands in a batch
file and then configure the Windows Task scheduler to run a command such as

cmd /C c:\webbackups\webbackups.bat

where webbackups.bat is your batch file.

Jim Buyens
Microsoft MVP
http://www.interlacken.com
Author of:
o-----------------------------------------------------
o--> Microsoft Visual Web Developer 2005 Express Edition: Build a Web Site
Now!
o--> Microsoft Office FrontPage 2003 Inside Out
o--> Microsoft Windows SharePoint Services Inside Out
o--> Faster Smarter Beginning Programming
o-----------------------------------------------------
 
Back
Top