@@ -, +, @@ - Go to the about page - Apply the patch - Reload the page - Sign off :-D --- about.pl | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) --- a/about.pl +++ a/about.pl @@ -55,9 +55,10 @@ if ($^O ne 'VMS') { } my $perlVersion = $]; my $mysqlVersion = `mysql -V`; -my $apacheVersion = `httpd -v 2> /dev/null`; -$apacheVersion = `httpd2 -v 2> /dev/null` unless $apacheVersion; -$apacheVersion = (`/usr/sbin/apache2 -V`)[0] unless $apacheVersion; +# Get Apache version +my $apacheVersion = (`/usr/sbin/apache2ctl -V`)[0]; +$apacheVersion = `httpd2 -v 2> /dev/null` unless $apacheVersion; +$apacheVersion = `httpd -v 2> /dev/null` unless $apacheVersion; my $zebraVersion = `zebraidx -V`; # Additional system information for warnings --