Step by step guide to setup bugzilla for shared hosting

bugzillashared-hosting

I am using bluehost shared hosting. I want to setup bugzilla. There are lot of guides on google search. As i having a tons of stuff on bluehost. I am looking for a trustable source. Anybody who is having step by step guide to install bugzilla. I have shell access.

PS:– for precautions i have a backup. But i dont want to mess up the things.

EDIT

I was trying:–

Stuck here:–

I was just going with the flow:–

  1. ./checksetup.pl
  2. /ramdisk/bin/perl install-module.pl –all
  3. vi ./localconfig (modified db, dbuser, dbuserpass)
  4. ./checksetup.pl

and after that by script :–

  • Tables created
  • some directories, css files and atlast

    Creating ./lib/.htaccess...
    Creating ./template/.htaccess... 
    Creating .htaccess...
    Creating contrib/.htaccess...
    Creating t/.htaccess...
    There is no such group: apache. Check your $webservergroup setting in
    ./localconfig.
    

Back on terminal.. What next??? I think it should ask me about administrative username and password etc

Best Answer

The error message specifies clearly what the problem is. In your localconfig file, there is a setting for the value $webservergroup (which is the Unix group your webserver runs with the permissions of). You have it set to "apache" (which, I believe, is the default) but there is no group in the system with that name. So you need to set it to the true name of the group your webserver runs as.

I am not familiar with bluehost but another common value is "www-data". To find out, do ps aux | grep apache and look at the first column. One may be root, but the next few will be the value you want.

Gerv

Related Topic