vote up 0 vote down star

Hello Everyone,

I want to make a status report of when my FTP server is on and when its off. HTML is the language which I prefer to use. I have never used HTML before, and I need it urgently due to a large request of when my ftp server is off and when its on. Can someone help me with this status report?

Thanks,

Kevin

flag

30% accept rate
You'll need to elaborate. What do you mean by "when my FTP server is on and when its off". Do you mean you have scheduled down time and want to advertise that on your web somewhere? Or do you mean you want to monitor when it goes down unexpectedly, and comes back up? – BasicallyMoney.com Oct 12 at 0:38
yea, when ur not able to connect to it, and when you are able. – Kevin Oct 12 at 1:22

2 Answers

vote up 1 vote down

If I were doing this, I would write an ASPNET page (or PHP, or etc) that simply connects and authenticates to the FTP server. If this succeeds, the server is online. The ASPX logic would then generate an HTML page indicating the results.

In the simple case you connect to the FTP server with each request for the page. It should cache the result though, and only check every minute, or five minutes, or some longer interval, regardless of how often a request for the status is made.

link|flag
vote up 1 vote down

May i suggest instead of writing your own, you just install server monitoring tools on your server instead? It might be an easier choice that writing your own.

Google search

HTML is a static markup language. You might want need to use a server-side script like PHP or Perl to query for the FTP server status.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.