Skip to content

system101/bugzilla_installation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CREATE DATABASE `bugzilla`
DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;

CREATE USER 'bugzilla-owner'@'localhost';
CREATE USER 'bugzilla-owner'@'127.0.0.1';
CREATE USER 'bugzilla-owner'@'::1';

SET PASSWORD
FOR 'bugzilla-owner'@'localhost' = PASSWORD('Xyram@2019');
SET PASSWORD
FOR 'bugzilla-owner'@'127.0.0.1' = PASSWORD('Xyram@2019');
SET PASSWORD
FOR 'bugzilla-owner'@'::1' = PASSWORD('Xyram@2019');



GRANT ALL PRIVILEGES ON
`bugzilla`.* TO 'bugzilla-owner'@'localhost' WITH GRANT OPTION;
GRANT ALL PRIVILEGES ON
`bugzilla`.* TO 'bugzilla-owner'@'127.0.0.1' WITH GRANT OPTION;
GRANT ALL PRIVILEGES ON
`bugzilla`.* TO 'bugzilla-owner'@'::1' WITH GRANT OPTION;

=============================================================================
https://bugzilla.readthedocs.io/en/latest/installing/moving.html


Add below lines in httpd.conf

Alias "/bugzilla/" "C:/bugzilla/"
<Directory "C:/bugzilla">
    ScriptInterpreterSource Registry-Strict
    Options +ExecCGI +FollowSymLinks
    DirectoryIndex index.cgi index.html
    AllowOverride All
    Require all granted
</Directory>

=================================================================================


Add below line in my.ini

ft_min_word_len=2
------------------------------------------------
make

max_allowed_packet=16M

====================================================================================
You must create a key in the Windows registry
------------------------------------------
HKEY_CLASSES_ROOT\.cgi\Shell\ExecCGI\Command 

    ADD with the default value pointing to the full path of perl.exe with a -T parameter
   
   C:\Strawberry\perl\bin\perl.exe -T

About

Installation guide for bugzilla (v.5.0.6)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 80