Automating Site Publish

J

John B

How do I automate FrontPage 2003 to publish to my site.

I have a program that processes incoming files locally then updates my local web site files. I would then like this program to use Frontpage2003 to publish these updated files to the site server. Anyone know enough about the FrontPage object ('frontpage.application') to guide me in the right direction
 
S

Stefan B Rusynko

You could just download the free Jimco Publisher
- will do it for you
See http://www.jimcoaddins.com/




| How do I automate FrontPage 2003 to publish to my site.
|
| I have a program that processes incoming files locally then updates my local web site files. I would then like this program to
use Frontpage2003 to publish these updated files to the site server. Anyone know enough about the FrontPage object
('frontpage.application') to guide me in the right direction.
|
|
 
J

John B

What is the exact name of the software you are refering to? The only thing I see with the word "publish", or similar, is the Selective Publisher. I'm not wanting to selectivily publish, I want FrontPage 2003 to publish all the changed files as normal, I just want it to happen without any interaction from me.

The program I'm wanting to use to automate FrontPage from is Visual FoxPro 8.0.

I've been searching a bit online and have the current thought in mind (the synatax may not be exact):

oFP = NEWOBJECT('frontpage.application')
oFPweb = oFP.webs.open("C:\My Sites\Personal")
oFPweb.publish([*])
oFPweb = .null.
oFP.webwindows.close
oFP = .null.

* - not sure what I'll need to put here I have the remote web setup in the webs settings. Also know that I want the log file to be created so that I can later see it to know exactly what was updated on the site.
 
S

Stefan B Rusynko

It's not an Addin - it's a utility
Jimco Publisher 1.5.77
- but the site has been updated and I don't see a link to it
You could use the Contact link at the site and ask him to send it to you




| What is the exact name of the software you are refering to? The only thing I see with the word "publish", or similar, is the
Selective Publisher. I'm not wanting to selectivily publish, I want FrontPage 2003 to publish all the changed files as normal, I
just want it to happen without any interaction from me.
|
| The program I'm wanting to use to automate FrontPage from is Visual FoxPro 8.0.
|
| I've been searching a bit online and have the current thought in mind (the synatax may not be exact):
|
| oFP = NEWOBJECT('frontpage.application')
| oFPweb = oFP.webs.open("C:\My Sites\Personal")
| oFPweb.publish([*])
| oFPweb = .null.
| oFP.webwindows.close
| oFP = .null.
|
| * - not sure what I'll need to put here I have the remote web setup in the webs settings. Also know that I want the log file to
be created so that I can later see it to know exactly what was updated on the site.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top