Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
052909b6
Commit
052909b6
authored
Feb 11, 2015
by
Frédéric Buclin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 1131404: checksetup.pl should check if mod_rewrite and mod_version are enabled
r=dkl a=glob
parent
fe2e8f64
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
7 deletions
+12
-7
Requirements.pm
Bugzilla/Install/Requirements.pm
+3
-1
strings.txt.pl
template/en/default/setup/strings.txt.pl
+9
-6
No files found.
Bugzilla/Install/Requirements.pm
View file @
052909b6
...
...
@@ -49,6 +49,8 @@ use constant APACHE_MODULES => {
mod_headers
=>
'headers_module'
,
mod_env
=>
'env_module'
,
mod_expires
=>
'expires_module'
,
mod_rewrite
=>
'rewrite_module'
,
mod_version
=>
'version_module'
};
# These are all of the binaries that we could possibly use that can
...
...
@@ -512,7 +514,7 @@ sub _missing_apache_modules {
return
[]
;
}
my
@missing
;
foreach
my
$module
(
keys
%
$modules
)
{
foreach
my
$module
(
sort
keys
%
$modules
)
{
my
$ok
=
_check_apache_module
(
$module
,
$modules
->
{
$module
},
$cmd_info
,
$output
);
push
(
@missing
,
$module
)
if
!
$ok
;
...
...
template/en/default/setup/strings.txt.pl
View file @
052909b6
...
...
@@ -286,12 +286,15 @@ EOT
***********************************************************************
*
APACHE
MODULES
*
***********************************************************************
*
Normally
,
when
Bugzilla
is
upgraded
,
all
Bugzilla
users
have
to
*
*
clear
their
browser
cache
or
Bugzilla
will
break
.
If
you
enable
*
*
certain
modules
in
your
Apache
configuration
(
usually
called
*
*
httpd
.
conf
or
apache2
.
conf
)
then
your
users
will
not
have
to
clear
*
*
their
caches
when
you
upgrade
Bugzilla
.
The
modules
you
need
to
*
*
enable
are:
*
*
Some
Apache
modules
allow
to
extend
Bugzilla
functionalities
.
*
*
These
modules
can
be
enabled
in
the
Apache
configuration
file
*
*
(
usually
called
httpd
.
conf
or
apache2
.
conf
)
.
*
*
-
mod_headers
,
mod_env
and
mod_expires
permit
to
automatically
*
*
refresh
the
browser
cache
of
your
users
when
upgrading
Bugzilla
.
*
*
-
mod_rewrite
permits
to
write
shorter
URLs
used
by
the
REST
API
.
*
*
-
mod_version
permits
to
write
rules
in
.
htaccess
specific
to
*
*
Apache
2.2
or
2.4
.
*
*
The
modules
you
need
to
enable
are:
*
*
*
END
modules_message_db
=>
<<
EOT
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment