web_server.php 387 B

1234567891011121314151617
  1. <?php
  2. /**
  3. * Web server info
  4. */
  5. ?>
  6. <table class="elgg-table-alt">
  7. <tr class="odd">
  8. <td><b><?php echo elgg_echo('admin:server:label:server'); ?> :</b></td>
  9. <td><?php echo $_SERVER['SERVER_SOFTWARE']; ?></td>
  10. </tr>
  11. <tr class="even">
  12. <td><b><?php echo elgg_echo('admin:server:label:log_location'); ?> :</b></td>
  13. <td><?php echo getenv('APACHE_LOG_DIR'); ?></td>
  14. </tr>
  15. </table>