Need a quick point in the right direction..

leroy30

New Member
Couldn't think of a better title.

I was wondering if anyone could give me a hint on the best practise to do this:

Background:
There are two web servers. One is hosting a web application and the other (different domain) is hosting the website to promote this app. Both are owned by the same company but for SSL and other security reasons they remain seperate entities.

What needs to be achieved:
A serious amount of data from the application server needs to be turned in to static pages on the other server, on a regular basis.

Because the servers are external to each other I'm not sure how to tackle this so a point in the right direction would be very much appreciated! From there I can do my own research.

Any good ideas?
Thanks for your help! :eek:)
 

cillosis

New Member
Just an idea but maybe you can write a script and place it on the "other server" which connects to the application server, grabs the data, and writes it to the server it is on as static pages. You could maybe run this script as a cron job?
 

web_design

New Member
a cronjob as mentioned above would be the best way.Alternatively what does the appsite use? if mysql you could try and remote connect if allowed assuming its not just localhost e.g. mysql.domain.com
 
Top