Recent blog posts
- Is A Yahoo Directory Link Worth It?
- Fast and Effective PHP Session Setup Example to Minimize Logouts and Problems
- Installing APC from beta/alpha development onto centOS 5.4 64 bit dual core
- Using Jquery, JSON, and AJAX in Drupal
- osDate and mysql Performance Optimization Tips
- osDate Permission Denied Behavior
- Landing Page and Referral Tracking For PHP/mysql osDate Site
- Installing Flash Video Chat With Your Own Chat Server or p2p
- Setting up DKIM, SPF, Domainkeys DNS, Regular DNS on CentOS 5.3 at Pacificrack.com
- Installing Bugzilla on centos - perl modules and other issues
Popular content
All time:
- Drupal Customization and Website Solutions By Peter Christopher at Palma SEO
- Creating a Custom Drupal Block With PHP
- How To Setup Drupal RSS Feed With FeedBurner and Adsense
- Setting up DKIM, SPF, Domainkeys DNS, Regular DNS on CentOS 5.3 at Pacificrack.com
- Moving A Single Drupal Install from default Directory to Multi-Site Drupal Installation
- robots.txt, nofollow, noindex, and Search Engine Behavior
- Installing Bugzilla on centos - perl modules and other issues
- Configuring A Few FCKeditor Attributes For Drupal 6
- About Peter Christopher
- Palma SEO Services Offered
- Yahoo Groups Are Dead
- Package Specials
- Page Rank Meditations on a Theme by Matt Cutts
- Change Open Realty URLs to Remove .html Suffix
- Multiple H1 Tags and Drupal
- How to Set Drupal FCKEditor Role Precedence Order for Users And Multiple Profiles
- Networking Vista and XP: Steps I Had to Take
- Fixing osDate captcha
- Installing Flash Video Chat With Your Own Chat Server or p2p
- Guarantee
- osDate and mysql Performance Optimization Tips
- How to Get a Copy of Open Realty Running on Your Local Machine For Development
- Be Careful With Clicksor: Their Javascript Embeds Links Even If You Only Add a Banner
- Installing Vista Service Pack 1 on Gateway cx210x Convertible Laptop With Upgraded Hard Drive, Linux, and Error 0x800F0826
- Take Stanford SEE AI Course For Free; Learn Machine Learning like Google's Founders Learned
- 1998: Amazon Snubs Google
- Check Out The State of Drupal Address by Dries From March 2009
- Thinking about SEO Search Engine Optimization When Implementing Drupal
- Does Using Google Toolbar Give Google Information That Will Give You A Site Penalty?
- To What Extent Does Google Use Visitor Time vs. Links in Page Rank / SERPs?


Good work
Nice to see this article. It was helpful. This can further be simplified.
The fedora epel repository has all the necessary rpms for bugzilla, and
related perl dependencies.
SO just by adding epel repository in yum, and doing "yum install bugzilla",
will install bugzilla and all its dependencies. (system wide single
installation.). The dependency list isntalled is alot more exhaustive that
what is mentioned above, because the optional modules are also installed.
This ensures that all features of bugzilla will be functional.
However there is a small catch. If for some reason, you want multiple
installations of bugzilla, then this single installation won't help. For that
do the following :
1) Add epel repository
2) yum -y install bugzilla
3) rpm -e bugzilla
(Now u have all the dependencies, essentials and optional ones.)
4) download bugzilla source and run './checksetup.pl' within the extracted
folder.
Ideally this run, should not complain, about any dependency. But thats not
the case. Thats where this initial post helped me to get things to work. For
some reason "perl-CGI" still remains an uninstalled dependency.
5) So install perl-CGI
* yum install perl-FCGI-0.67-1.2.el5.rf.i386
* wget http://dl.atrpms.net/all/perl-CGI-3.42-8.el5.noarch.rpm [1]
* wget
ftp://distro.ibiblio.org/pub/linux/distributions/smeserver/releases/7.4/
[2]...
* rpm -i atrpms-73.1-1.noarch.rpm
* rpm -i perl-CGI-3.42-8.el5.noarch.rpm
6) In bugzilla folder run "./checksetup.pl" and your "./localconfig" gets
generated.
7) Installation complete! create as many copies of this folder. And keep
changing the db connection parameters in localconfig.
./Ritesh