home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2004 December / PCpro_2004_12.ISO / files / webserver / tsw / TSW_3.4.0.exe / Apache2 / admin / serverinfo.php < prev    next >
Encoding:
PHP Script  |  2004-04-04  |  1.6 KB  |  41 lines

  1. <html> 
  2. <head>
  3. <META HTTP-EQUIV="content-type" CONTENT="text/html; charset=UTF-8">
  4. <title></title>
  5. <style type="text/css">
  6. <!--
  7. body      { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; color: #444477; background-image: url(../gfx/body_bgr.gif); background-repeat: no-repeat; background-position: center 15px; background-attachment: fixed; }
  8. h1        { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14px; text-transform: uppercase; color: #000000; }
  9. strong    { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; text-transform: uppercase; color: #000000; }
  10. tt        { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; color: #444477; }
  11. a           { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; color: red; text-decoration: none; }
  12. a:visited { color: red; text-decoration: underline; }
  13. a:link       { color: red; text-decoration: underline; }
  14. a:hover   {    color: #6699FF; text-decoration: none; }
  15. hr          { height: 3px; border: 1px #444477 solid; filter: Alpha(Opacity=100,FinishOpacity=10,Style=2); width: 100%; }
  16. -->
  17. </style>
  18. </head>
  19. <?PHP
  20.   
  21.   include("../inc/config.inc.php"); 
  22.   include("../lang/".$lang."/global.php");
  23.   
  24.   // In this case 'localhost' can be left, cause this should never
  25.   // be accessible from other sources than localhost
  26.   $fd=@fopen("http://localhost/server-info","r");
  27.   if ($fd) {
  28.     while ($line=fgets($fd,1000))
  29.   {
  30.      $alltext.=$line;
  31.   }
  32.   fclose ($fd);
  33.  
  34.     echo $alltext;
  35.     }
  36. else {
  37.     echo "<b>$cont_srv_down</b>";
  38.     }
  39. ?> 
  40.  
  41. </html>