View previous topic :: View next topic |
Author |
Message |
Server One Host -
Joined: 26 Dec 2004 Posts: 14
|
Posted: Mon Dec 27, 2004 7:15 pm Post subject: How can i check if my site is down? |
|
|
How???? _________________
Dont drop your baby yoshi! |
|
Back to top |
|
 |
woody03 -
Joined: 16 Apr 2004 Posts: 103 Location: U.K>West Midlands>Walsall,
|
Posted: Mon Dec 27, 2004 7:16 pm Post subject: |
|
|
use a proxy site, but i cant remember the link. _________________
 |
|
Back to top |
|
 |
Server One Host -
Joined: 26 Dec 2004 Posts: 14
|
Posted: Mon Dec 27, 2004 7:20 pm Post subject: |
|
|
ok then.I think my site is down due to the FTP
But i dont know _________________
Dont drop your baby yoshi! |
|
Back to top |
|
 |
Glitch2082 -
Joined: 02 Dec 2004 Posts: 194
|
Posted: Mon Dec 27, 2004 8:36 pm Post subject: |
|
|
If you have php installed...
Code: |
<?php
$ip=$_SERVER['REMOTE_ADDR'];
echo "<font face='verdana' size='1'><a href='http://$ip'>Click Here to check if website is running</a>";
?>
|
Just put that in a php file and then run it. _________________ int main() {
cout << "Im Pro Apache";
cin.get();
} |
|
Back to top |
|
 |
senshi -
Joined: 05 Nov 2003 Posts: 385 Location: UK
|
Posted: Thu Dec 30, 2004 10:14 am Post subject: |
|
|
You can ask the server for the index.html or what ever your index page is called, request the header for that page, if the page information is returned then the server is running, if not, then you know that either that page does not exist or the servern is down.
FTP, is another net service, you have bandwidth, what happens is your machine is told that the amound of bandwidth it has to play with, your services are then alloted a per system reqwuirement and if the FTP is flooded then your connection wont serve up.
I suggest an FTP server that is limited to a maximum number od connections and a set amound of traffic to control the number of connects.
I hope that you ARE NOT running the FTP as ana anon login, if you are, your asking to be hacked. its that simple.
If you have PHP then you could use PHP to allow uploading and downloading via http through an interface to which the user has no direct control over. |
|
Back to top |
|
 |
|