Bugzilla is a bug tracking system written in perl, and I want to have my own bugzilla.So I prepared to install it in my host space.
It is lucky that my space provider opened ssh for me,so it makes the installation eariler.
First,download bugzilla-2.22.2,it seems only this version works in my space,and put exact it in a directory,I name it bugzilla.
Second,on my ssh console,run command “chmod 755 -R bugzilla” to change previllage of files.Then run “perl checksetup.pl” .It will inform you what perl modules you have to install,you can install it from CPanel.CPanel tells that “You will need to add local perl path to the include path.
You can do this by adding the following code to your script:…”,just put the code below in the front of checksetup.pl,then run it again.It will generator some new files,you have to change them to 755 too.
And then generate a mysql database,and put these information in localconfig generated by checksetup.pl.
$db_host = ‘localhost’; # where is the database?
$db_name = ”; # name of the SQL database
$db_user = ”; # user to attach to the SQL database
$db_pass = ”;
Now edit a .htaccess in the directory,put below in it.
AddHandler cgi-script .pl .cgi
Options +ExecCGI
And put the code told by CPanel Perl Module in any .cgi and .pl files.
Now my http://miscgarden.com/bugzilla/ works.

No related posts.
