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
74fb5b94
Commit
74fb5b94
authored
Dec 28, 2010
by
Max Kanat-Alexander
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 621597: Make mod_perl.pl do the INC configuration itself, instead of
requiring it to be in httpd.conf. r=dkl, a=mkanat
parent
9271e452
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
installation.xml
docs/en/xml/installation.xml
+1
-1
mod_perl.pl
mod_perl.pl
+7
-1
No files found.
docs/en/xml/installation.xml
View file @
74fb5b94
...
...
@@ -1132,7 +1132,7 @@ max_allowed_packet=4M
</warning>
<programlisting>
PerlSwitches -
I/var/www/html/bugzilla -I/var/www/html/bugzilla/lib -
w -T
PerlSwitches -w -T
PerlConfigRequire /var/www/html/bugzilla/mod_perl.pl
</programlisting>
</step>
...
...
mod_perl.pl
View file @
74fb5b94
...
...
@@ -18,6 +18,13 @@
package
Bugzilla::
ModPerl
;
use
strict
;
# This sets up our libpath without having to specify it in the mod_perl
# configuration.
use
File::
Basename
;
use
lib
dirname
(
__FILE__
);
use
Bugzilla::
Constants
();
use
lib
Bugzilla::Constants::
bz_locations
()
->
{
'ext_libpath'
};
# If you have an Apache2::Status handler in your Apache configuration,
# you need to load Apache2::Status *here*, so that any later-loaded modules
# can report information to Apache2::Status.
...
...
@@ -36,7 +43,6 @@ use Bugzilla ();
# Loading Bugzilla.pm doesn't load this, though, and we want it preloaded.
use
Bugzilla::
BugMail
();
use
Bugzilla::
CGI
();
use
Bugzilla::
Constants
();
use
Bugzilla::
Extension
();
use
Bugzilla::Install::
Requirements
();
use
Bugzilla::
Util
();
...
...
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