steps to visualize HTTP server logging – part I
apache
check Apache server version by creating a simple e.g. serverinfo.php file with following statement: <?php phpinfo(); ?>
and open in your browser: http://your host/serverinfo.php. Find the version info in the Apache Version section:
Apache Version – Apache/2.0.53 (Linux/SUSE)
or run from the command line:
/usr/sbin # apache2ctl -v
Server version: Apache/2.0.53
Server built: Aug 30 2006 13:14:23
h969344:/usr/sbin #
Next add [...]