Bugzilla has a number of optional features. This section describes how to configure or enable them.
Several of the below features require you to set up a script to run at recurring intervals. The method of doing this varies by operating system.
Run:
crontab -e
This should bring up the crontab file in your editor. Add the relevant cron line from the sections below in order to enable the corresponding feature.
Windows comes with a Task Scheduler. To run a particular script, do the following:
If you have installed the necessary Perl modules, as indicated by checksetup.pl, you can ask Bugzilla to regularly collect statistics so that you can see graphs and charts.
On Linux, use a cron line as follows:
5 0 * * * cd <your-bugzilla-directory> && ./collectstats.pl
On Windows, schedule the collectstats.pl script to run daily.
After two days have passed you'll be able to view bug graphs from the Reports page.
Users can configure Bugzilla to annoy them at regular intervals, by having Bugzilla execute saved searches at certain times and emailing the results to the user. This is known as "Whining". The details of how a user configures Whining is described in Whining, but for it to work a Perl script must be executed at regular intervals.
On Linux, use a cron line as follows:
*/15 * * * * cd <your-bugzilla-directory> && ./whine.pl
On Windows, schedule the whine.pl script to run every 15 minutes.
It's possible for bugs to languish in an untriaged state. Bugzilla has a specific system to issue complaints about this particular problem to all the relevant engineers automatically by email.
On Linux, use a cron line as follows:
55 0 * * * cd <your-bugzilla-directory> && ./whineatnews.pl
On Windows, schedule the whineatnews.pl script to run daily.
Bugzilla can draw graphs of the dependencies (depends on/blocks relationships) between bugs, if you install a package called dot.
Put the complete path to the dot command (from the graphviz package) in the webdotbase parameter. E.g. /usr/bin/dot.
Download and install Graphviz from the Graphviz website. Put the complete path to dot.exe in the webdotbase parameter, using forward slashes as path separators. E.g. C:/Program Files/ATT/Graphviz/bin/dot.exe.
Bugzilla has extensive documentation and help, written in reStructured Text format. A generic compiled copy exists on bugzilla.readthedocs.org, and Help links point to it by default. If you want to build and use a local copy of the documentation, perhaps because you have added Bugzilla extensions which come with documentation, or because your users don't have Internet access from their machines, then:
Then run docs/makedocs.pl in your Bugzilla directory.
Bugzilla will automatically detect that you've compiled the documentation and link to it in preference to the copy on the Internet. Don't forget to recompile it when you upgrade Bugzilla or install new extensions.
This documentation undoubtedly has bugs; if you find some, please file them here.