Bugzilla – Attachment 39094 Details for
Bug 13486
About page Apache version is empty if Apache version is 2.4
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
[SIGNED-OFF] Bug 13486: Apache version empty in about page if Apache 2.4
SIGNED-OFF-Bug-13486-Apache-version-empty-in-about.patch (text/plain), 1.75 KB, created by
Bernardo Gonzalez Kriegel
on 2015-05-12 15:51:56 UTC
(
hide
)
Description:
[SIGNED-OFF] Bug 13486: Apache version empty in about page if Apache 2.4
Filename:
MIME Type:
Creator:
Bernardo Gonzalez Kriegel
Created:
2015-05-12 15:51:56 UTC
Size:
1.75 KB
patch
obsolete
>From 41db4294cedf2de44e4561b891b4036a5d88283e Mon Sep 17 00:00:00 2001 >From: Tomas Cohen Arazi <tomascohen@gmail.com> >Date: Thu, 5 Feb 2015 14:31:55 -0300 >Subject: [PATCH] [SIGNED-OFF] Bug 13486: Apache version empty in about page > if Apache 2.4 > >This patch makes about.pl query the running Apache version using >the apache2ctl command. I tested it on Apache 2.2 and is backwards >compatible (it is present in both). > >To test: >( On an Apache 2.4 setup ) >- Go to the about page >=> FAIL: "Apache version:" is empty >- Apply the patch >- Reload the page >=> SUCCESS: "Apache version:" shows the correct version. >- Sign off :-D > >If you have an Apache 2.2 setup to try it, verify that there are no regressions >(trivial because you can run apache2ctl manually and verify the first result is the expecte). > >Regards > >PS. I even changed the order in which Apache version is tested because >most people is using Debian/Ubuntu and it was the last option. > >Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel@gmail.com> >Tested with apache 2.2/2.4, no errors >--- > about.pl | 7 ++++--- > 1 file changed, 4 insertions(+), 3 deletions(-) > >diff --git a/about.pl b/about.pl >index 34c98ef..4e06ae5 100755 >--- a/about.pl >+++ b/about.pl >@@ -57,9 +57,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 = (`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 >-- >1.7.9.5
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 13486
:
34621
|
35674
|
39092
|
39094
|
39385