From user at mozilla-xp.com/ Mon Dec 5 05:58:08 2011 From: user at mozilla-xp.com/ (bhoopesh) Date: Sun, 04 Dec 2011 23:58:08 -0600 Subject: bugzilla custom field Message-ID: can we make custom field mandatory _______________________________________________ dev-apps-bugzilla mailing list dev-apps-bugzilla at lists.mozilla.org https://lists.mozilla.org/listinfo/dev-apps-bugzilla From aliustek at gmail.com Mon Dec 5 10:01:16 2011 From: aliustek at gmail.com (Ali Ustek) Date: Mon, 5 Dec 2011 10:01:16 +0000 Subject: bugzilla custom field In-Reply-To: References: Message-ID: This is a new feature in the latest stable release Bugzilla 4.0.2 http://www.bugzilla.org/releases/4.0.2/release-notes.html#v40_feat_mandatory On 5 December 2011 05:58, bhoopesh wrote: > can we make custom field mandatory > > > _______________________________________________ > dev-apps-bugzilla mailing list > dev-apps-bugzilla at lists.mozilla.org > https://lists.mozilla.org/listinfo/dev-apps-bugzilla > - > To view or change your list settings, click here: > _______________________________________________ dev-apps-bugzilla mailing list dev-apps-bugzilla at lists.mozilla.org https://lists.mozilla.org/listinfo/dev-apps-bugzilla From anfisher at yahoo.com Sat Dec 10 01:39:11 2011 From: anfisher at yahoo.com (Andy) Date: Fri, 09 Dec 2011 17:39:11 -0800 Subject: Prevent Notifications on changes to specific fields Message-ID: I figure this is probably a long shot, but is there any way (either through the API or not), of preventing Bugzilla from sending out notifications on changes to a given (custom) field? We have an internal app using the Bugzilla API (on a 3.4.1 instance) to edit / update some bugs. We have a custom field on our bugs for low level tracking purposes, and when we update this field through the API, it will send an email notification to those tracking the bug (despite the value of this field being meaningless to end users). (As a backup solution, I'm guessing we might be able to update the bug's database content directly instead of going through the API, but I was hoping to avoid this if possible) Thanks! Andy _______________________________________________ dev-apps-bugzilla mailing list dev-apps-bugzilla at lists.mozilla.org https://lists.mozilla.org/listinfo/dev-apps-bugzilla From lpsolit at gmail.com Sat Dec 10 12:52:56 2011 From: lpsolit at gmail.com (=?ISO-8859-1?Q?Fr=E9d=E9ric_Buclin?=) Date: Sat, 10 Dec 2011 13:52:56 +0100 Subject: Prevent Notifications on changes to specific fields In-Reply-To: References: Message-ID: <4EE35628.8060500@gmail.com> Le 10. 12. 11 02:39, Andy a ?crit : > I figure this is probably a long shot, but is there any way (either > through the API or not), of preventing Bugzilla from sending out > notifications on changes to a given (custom) field? Edit the file Bugzilla/User.pm and add code into the wants_bug_mail() subroutine to exclude this custom field. The current code has: foreach my $change (@$fieldDiffs) { my $fieldName = $change->{field_name}; Just add: next if $fieldName eq 'cf_your_custom_field_name'; right after the two lines above, where cf_your_custom_field_name must be replaced by the real name of your custom field. LpSolit From anfisher at yahoo.com Fri Dec 16 18:37:45 2011 From: anfisher at yahoo.com (Andy) Date: Fri, 16 Dec 2011 10:37:45 -0800 Subject: Prevent Notifications on changes to specific fields In-Reply-To: References: Message-ID: Perfect, thanks! On 12/10/2011 04:52 AM, Fr?d?ric Buclin wrote: > Le 10. 12. 11 02:39, Andy a ?crit : >> I figure this is probably a long shot, but is there any way (either >> through the API or not), of preventing Bugzilla from sending out >> notifications on changes to a given (custom) field? > > Edit the file Bugzilla/User.pm and add code into the wants_bug_mail() > subroutine to exclude this custom field. > > The current code has: > > foreach my $change (@$fieldDiffs) { > my $fieldName = $change->{field_name}; > > Just add: > next if $fieldName eq 'cf_your_custom_field_name'; > > right after the two lines above, where cf_your_custom_field_name must be > replaced by the real name of your custom field. > > > LpSolit > - > To view or change your list settings, click here: > _______________________________________________ dev-apps-bugzilla mailing list dev-apps-bugzilla at lists.mozilla.org https://lists.mozilla.org/listinfo/dev-apps-bugzilla From theycallmefish at gmail.com Mon Dec 19 21:03:33 2011 From: theycallmefish at gmail.com (Ryan Wilson) Date: Mon, 19 Dec 2011 14:03:33 -0700 Subject: Self-Introduction: Ryan Wilson Message-ID: <1324328613.7426.14.camel@dr-suse> Full Name: Ryan Wilson IRC nick: thef1sh Provo, Utah United States Application Engineer at Novell I'd like to help out with: Bugzilla/Testopia development Historical qualifications: Professionally knowledgeable in Perl, SQL (MySQL, Oracle, Transact-SQL), Java, and C#. From gerv at mozilla.org Wed Dec 21 13:49:02 2011 From: gerv at mozilla.org (Gervase Markham) Date: Wed, 21 Dec 2011 13:49:02 +0000 Subject: Self-Introduction: Ryan Wilson In-Reply-To: References: Message-ID: <1J6dnam19ahTfmzTnZ2dnUVZ_uadnZ2d@mozilla.org> On 19/12/11 21:03, Ryan Wilson wrote: > Full Name: Ryan Wilson Welcome, Ryan :-) If you are interested in Testopia development, then I'm sure Greg could do with a hand. Testopia needs updating for the latest release of Bugzilla, testing and shipping :-) Gerv _______________________________________________ dev-apps-bugzilla mailing list dev-apps-bugzilla at lists.mozilla.org https://lists.mozilla.org/listinfo/dev-apps-bugzilla From rama.devi at gmail.com Tue Dec 27 22:44:20 2011 From: rama.devi at gmail.com (Rama) Date: Tue, 27 Dec 2011 14:44:20 -0800 (PST) Subject: Installing Bugzilla4.0.1 on CentOS Message-ID: Hi I am trying to install Bugzilla4.0.1 on CentOS with perl v5.8.8. When I am checking for the modules using the command ./checksetup.pl --check-modules I am getting the error like ********************************************************************* * MODULE NAME * ENABLES FEATURE(S) * *********************************************************************** * Apache-SizeLimit * mod_perl * *********************************************************************** COMMANDS TO INSTALL OPTIONAL MODULES: Apache-SizeLimit: /usr/bin/perl install-module.pl Apache2::SizeLimit SO when I try to run this Apache-SizeLimit: /usr/bin/perl install- module.pl Apache2::SizeLimit I'm getting the error like this: Can't find the mod_perl include dir (reason: path /usr/include/httpd doesn't exist) at /usr/li b/perl5/vendor_perl/5.8.8/i386- linux-thread-multi/Apache2/Build.pm line 2030. Warning: No success on command[/usr/bin/perl Makefile.PL LIB="/var/ www/html/bugzilla/lib" INS TALLMAN1DIR="/var/www/html/ bugzilla/lib/man/man1" INSTALLMAN3DIR="/var/www/html/bugzilla/lib/ m an/man3" INSTALLBIN="/var/www/html/bugzilla/lib/bin" INSTALLSCRIPT="/var/www/html/bugzilla/lib /bin" INSTALLDIRS=perl] PHRED/Apache-SizeLimit-0.96.tar.gz /usr/bin/perl Makefile.PL LIB="/var/www/html/bugzilla/lib" INSTALLMAN1DIR="/var/www/html/bu gzilla/lib/man/man1" INSTALLMAN3DIR="/var/www/html/bugzilla/lib/man/man3" INSTALLBIN="/var/ www /html/bugzilla/lib/bin" INSTALLSCRIPT="/var/www/html/ bugzilla/lib/bin" INSTALLDIRS=perl -- NOT OK Skipping test because of notest pragma Running make install Make had some problems, won't install Could not read metadata file. Falling back to other methods to determine prerequisites [root at hqbugforce bugzilla]# yum install mod_perl Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * base: mirror.hmc.edu * extras: linux.mirrors.es.net * updates: centos.mirror.facebook.net base | 1.1 kB 00:00 extras | 2.1 kB 00:00 updates | 1.9 kB 00:00 Setting up Install Process Package mod_perl-2.0.4-6.el5.i386 already installed and latest version Nothing to do [root at hqbugforce bugzilla]# yum install Apache:SizeLimit Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * base: mirror.grikare.com * extras: linux.mirrors.es.net * updates: centos.mirror.facebook.net Setting up Install Process No package Apache:SizeLimit available. Nothing to do Actually I tried to install the module Apache:SizeLimit after downloading it from CPAN But I am not successful, I am I missing something, I am a newbee and any help is appreciated..... _______________________________________________ dev-apps-bugzilla mailing list dev-apps-bugzilla at lists.mozilla.org https://lists.mozilla.org/listinfo/dev-apps-bugzilla From rama.devi at gmail.com Tue Dec 27 22:43:52 2011 From: rama.devi at gmail.com (Rama) Date: Tue, 27 Dec 2011 14:43:52 -0800 (PST) Subject: Installing Bugzilla4.0.1 on CentOS Message-ID: <756b0fc3-5c4b-439a-9994-52beb941070a@i3g2000pro.googlegroups.com> Hi I am trying to install Bugzilla4.0.1 on CentOS with perl v5.8.8. When I am checking for the modules using the command ./checksetup.pl --check-modules I am getting the error like ********************************************************************* * MODULE NAME * ENABLES FEATURE(S) * *********************************************************************** * Apache-SizeLimit * mod_perl * *********************************************************************** COMMANDS TO INSTALL OPTIONAL MODULES: Apache-SizeLimit: /usr/bin/perl install-module.pl Apache2::SizeLimit SO when I try to run this Apache-SizeLimit: /usr/bin/perl install- module.pl Apache2::SizeLimit I'm getting the error like this: Can't find the mod_perl include dir (reason: path /usr/include/httpd doesn't exist) at /usr/li b/perl5/vendor_perl/5.8.8/i386- linux-thread-multi/Apache2/Build.pm line 2030. Warning: No success on command[/usr/bin/perl Makefile.PL LIB="/var/ www/html/bugzilla/lib" INS TALLMAN1DIR="/var/www/html/ bugzilla/lib/man/man1" INSTALLMAN3DIR="/var/www/html/bugzilla/lib/ m an/man3" INSTALLBIN="/var/www/html/bugzilla/lib/bin" INSTALLSCRIPT="/var/www/html/bugzilla/lib /bin" INSTALLDIRS=perl] PHRED/Apache-SizeLimit-0.96.tar.gz /usr/bin/perl Makefile.PL LIB="/var/www/html/bugzilla/lib" INSTALLMAN1DIR="/var/www/html/bu gzilla/lib/man/man1" INSTALLMAN3DIR="/var/www/html/bugzilla/lib/man/man3" INSTALLBIN="/var/ www /html/bugzilla/lib/bin" INSTALLSCRIPT="/var/www/html/ bugzilla/lib/bin" INSTALLDIRS=perl -- NOT OK Skipping test because of notest pragma Running make install Make had some problems, won't install Could not read metadata file. Falling back to other methods to determine prerequisites [root at hqbugforce bugzilla]# yum install mod_perl Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * base: mirror.hmc.edu * extras: linux.mirrors.es.net * updates: centos.mirror.facebook.net base | 1.1 kB 00:00 extras | 2.1 kB 00:00 updates | 1.9 kB 00:00 Setting up Install Process Package mod_perl-2.0.4-6.el5.i386 already installed and latest version Nothing to do [root at hqbugforce bugzilla]# yum install Apache:SizeLimit Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * base: mirror.grikare.com * extras: linux.mirrors.es.net * updates: centos.mirror.facebook.net Setting up Install Process No package Apache:SizeLimit available. Nothing to do Actually I tried to install the module Apache:SizeLimit after downloading it from CPAN But I am not successful, I am I missing something, I am a newbee and any help is appreciated..... _______________________________________________ dev-apps-bugzilla mailing list dev-apps-bugzilla at lists.mozilla.org https://lists.mozilla.org/listinfo/dev-apps-bugzilla From lpsolit at gmail.com Tue Dec 27 22:50:44 2011 From: lpsolit at gmail.com (=?ISO-8859-1?Q?Fr=E9d=E9ric_Buclin?=) Date: Tue, 27 Dec 2011 23:50:44 +0100 Subject: Installing Bugzilla4.0.1 on CentOS In-Reply-To: <756b0fc3-5c4b-439a-9994-52beb941070a@i3g2000pro.googlegroups.com> References: <756b0fc3-5c4b-439a-9994-52beb941070a@i3g2000pro.googlegroups.com> Message-ID: <4EFA4BC4.5060405@gmail.com> Le 27. 12. 11 23:43, Rama a ?crit : > SO when I try to run this Apache-SizeLimit: /usr/bin/perl install- > module.pl Apache2::SizeLimit I'm getting the error like this: > > Can't find the mod_perl include dir If you don't have mod_perl installed, then you don't need to install Apache2::SizeLimit. As this is a support question, please visit http://www.bugzilla.org/support for help. This mailing-list is for developers only. LpSolit From dkl at mozilla.com Tue Dec 27 22:54:50 2011 From: dkl at mozilla.com (David Lawrence) Date: Tue, 27 Dec 2011 17:54:50 -0500 Subject: Installing Bugzilla4.0.1 on CentOS In-Reply-To: References: Message-ID: <4EFA4CBA.8040008@mozilla.com> On 12/27/2011 05:44 PM, Rama wrote: > > I'm getting the error like this: > > Can't find the mod_perl include dir (reason: path /usr/include/httpd > doesn't exist) at /usr/li b/perl5/vendor_perl/5.8.8/i386- > linux-thread-multi/Apache2/Build.pm line 2030. > Warning: No success on command[/usr/bin/perl Makefile.PL LIB="/var/ > www/html/bugzilla/lib" INS TALLMAN1DIR="/var/www/html/ > bugzilla/lib/man/man1" INSTALLMAN3DIR="/var/www/html/bugzilla/lib/ > m an/man3" INSTALLBIN="/var/www/html/bugzilla/lib/bin" > INSTALLSCRIPT="/var/www/html/bugzilla/lib /bin" > INSTALLDIRS=perl] > PHRED/Apache-SizeLimit-0.96.tar.gz > /usr/bin/perl Makefile.PL LIB="/var/www/html/bugzilla/lib" > INSTALLMAN1DIR="/var/www/html/bu gzilla/lib/man/man1" > INSTALLMAN3DIR="/var/www/html/bugzilla/lib/man/man3" INSTALLBIN="/var/ > www /html/bugzilla/lib/bin" INSTALLSCRIPT="/var/www/html/ > bugzilla/lib/bin" INSTALLDIRS=perl -- NOT OK Pretty sure you need mod_perl-devel as well. > [root at hqbugforce bugzilla]# yum install mod_perl yum install mod_perl-devel dkl -- David Lawrence dkl at mozilla.com From rama.devi at gmail.com Tue Dec 27 22:41:57 2011 From: rama.devi at gmail.com (Rama) Date: Tue, 27 Dec 2011 14:41:57 -0800 (PST) Subject: Installing Bugzilla4.0.1 on CentOS Message-ID: <1d717364-617c-4f71-8fee-638fff1df48c@b20g2000pro.googlegroups.com> Hi I am trying to install Bugzilla4.0.1 on CentOS with perl v5.8.8. When I am checking for the modules using the command ./checksetup.pl --check-modules I am getting the error like ********************************************************************* * MODULE NAME * ENABLES FEATURE(S) * *********************************************************************** * Apache-SizeLimit * mod_perl * *********************************************************************** COMMANDS TO INSTALL OPTIONAL MODULES: Apache-SizeLimit: /usr/bin/perl install-module.pl Apache2::SizeLimit SO when I try to run this Apache-SizeLimit: /usr/bin/perl install- module.pl Apache2::SizeLimit I'm getting the error like this: Can't find the mod_perl include dir (reason: path /usr/include/httpd doesn't exist) at /usr/li b/perl5/vendor_perl/5.8.8/i386- linux-thread-multi/Apache2/Build.pm line 2030. Warning: No success on command[/usr/bin/perl Makefile.PL LIB="/var/ www/html/bugzilla/lib" INS TALLMAN1DIR="/var/www/html/ bugzilla/lib/man/man1" INSTALLMAN3DIR="/var/www/html/bugzilla/lib/ m an/man3" INSTALLBIN="/var/www/html/bugzilla/lib/bin" INSTALLSCRIPT="/var/www/html/bugzilla/lib /bin" INSTALLDIRS=perl] PHRED/Apache-SizeLimit-0.96.tar.gz /usr/bin/perl Makefile.PL LIB="/var/www/html/bugzilla/lib" INSTALLMAN1DIR="/var/www/html/bu gzilla/lib/man/man1" INSTALLMAN3DIR="/var/www/html/bugzilla/lib/man/man3" INSTALLBIN="/var/ www /html/bugzilla/lib/bin" INSTALLSCRIPT="/var/www/html/ bugzilla/lib/bin" INSTALLDIRS=perl -- NOT OK Skipping test because of notest pragma Running make install Make had some problems, won't install Could not read metadata file. Falling back to other methods to determine prerequisites [root at hqbugforce bugzilla]# yum install mod_perl Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * base: mirror.hmc.edu * extras: linux.mirrors.es.net * updates: centos.mirror.facebook.net base | 1.1 kB 00:00 extras | 2.1 kB 00:00 updates | 1.9 kB 00:00 Setting up Install Process Package mod_perl-2.0.4-6.el5.i386 already installed and latest version Nothing to do [root at hqbugforce bugzilla]# yum install Apache:SizeLimit Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * base: mirror.grikare.com * extras: linux.mirrors.es.net * updates: centos.mirror.facebook.net Setting up Install Process No package Apache:SizeLimit available. Nothing to do Actually I tried to install the module Apache:SizeLimit after downloading it from CPAN But I am not successful, I am I missing something, I am a newbee and any help is appreciated..... _______________________________________________ dev-apps-bugzilla mailing list dev-apps-bugzilla at lists.mozilla.org https://lists.mozilla.org/listinfo/dev-apps-bugzilla From rama.devi at gmail.com Wed Dec 28 00:48:56 2011 From: rama.devi at gmail.com (Rama) Date: Tue, 27 Dec 2011 16:48:56 -0800 (PST) Subject: Installing Bugzilla4.0.1 on CentOS References: Message-ID: On Dec 27, 2:54?pm, David Lawrence wrote: > On 12/27/2011 05:44 PM, Rama wrote: > > > > > > > > > > > > > I'm getting the error like this: > > > Can't find the mod_perl include dir (reason: path /usr/include/httpd > > doesn't exist) at /usr/li ? ? ? ? ? b/perl5/vendor_perl/5.8.8/i386- > > linux-thread-multi/Apache2/Build.pm line 2030. > > Warning: No success on command[/usr/bin/perl Makefile.PL ?LIB="/var/ > > www/html/bugzilla/lib" INS ? ? ? ? ? TALLMAN1DIR="/var/www/html/ > > bugzilla/lib/man/man1" INSTALLMAN3DIR="/var/www/html/bugzilla/lib/ > > m ? ? ? ? ? an/man3" INSTALLBIN="/var/www/html/bugzilla/lib/bin" > > INSTALLSCRIPT="/var/www/html/bugzilla/lib ? ? ? ? ? /bin" > > INSTALLDIRS=perl] > > ? ?PHRED/Apache-SizeLimit-0.96.tar.gz > > ? ?/usr/bin/perl Makefile.PL ?LIB="/var/www/html/bugzilla/lib" > > INSTALLMAN1DIR="/var/www/html/bu ? ? ? ? ? gzilla/lib/man/man1" > > INSTALLMAN3DIR="/var/www/html/bugzilla/lib/man/man3" INSTALLBIN="/var/ > > www ? ? ? ? ? /html/bugzilla/lib/bin" INSTALLSCRIPT="/var/www/html/ > > bugzilla/lib/bin" INSTALLDIRS=perl -- NOT ? ? ? ? ? ?OK > > Pretty sure you need mod_perl-devel as well. > > > [root at hqbugforce bugzilla]# yum install mod_perl > > yum install mod_perl-devel > > dkl > > -- > David Lawrence > d... at mozilla.com > > - > To view or change your list settings, click here: > Hi David, Thank you for your quick response. This helped me a lot, I spent a day to figure this out... But when I am restarting my Apache, I am getting the error like this: Starting httpd: httpd: Syntax error on line 149 of /etc/httpd/conf/ httpd.conf: Cannot load /var/www/html/modules/mod_auth_basic.so into server: /var/www/html/modules/mod_auth_basic.so: cannot open shared object file: No such file or directory Thanks, Rama _______________________________________________ dev-apps-bugzilla mailing list dev-apps-bugzilla at lists.mozilla.org https://lists.mozilla.org/listinfo/dev-apps-bugzilla From rama.devi at gmail.com Wed Dec 28 20:10:53 2011 From: rama.devi at gmail.com (Rama) Date: Wed, 28 Dec 2011 12:10:53 -0800 (PST) Subject: Installing Bugzilla4.0.1 on CentOS References: Message-ID: <3da7871a-ffa7-42f3-be4b-08c769af19c9@s10g2000prs.googlegroups.com> On Dec 27, 4:48?pm, Rama wrote: > On Dec 27, 2:54?pm, David Lawrence wrote: > > > > > > > > > > > On 12/27/2011 05:44 PM, Rama wrote: > > > > I'm getting the error like this: > > > > Can't find the mod_perl include dir (reason: path /usr/include/httpd > > > doesn't exist) at /usr/li ? ? ? ? ? b/perl5/vendor_perl/5.8.8/i386- > > > linux-thread-multi/Apache2/Build.pm line 2030. > > > Warning: No success on command[/usr/bin/perl Makefile.PL ?LIB="/var/ > > > www/html/bugzilla/lib" INS ? ? ? ? ? TALLMAN1DIR="/var/www/html/ > > > bugzilla/lib/man/man1" INSTALLMAN3DIR="/var/www/html/bugzilla/lib/ > > > m ? ? ? ? ? an/man3" INSTALLBIN="/var/www/html/bugzilla/lib/bin" > > > INSTALLSCRIPT="/var/www/html/bugzilla/lib ? ? ? ? ? /bin" > > > INSTALLDIRS=perl] > > > ? ?PHRED/Apache-SizeLimit-0.96.tar.gz > > > ? ?/usr/bin/perl Makefile.PL ?LIB="/var/www/html/bugzilla/lib" > > > INSTALLMAN1DIR="/var/www/html/bu ? ? ? ? ? gzilla/lib/man/man1" > > > INSTALLMAN3DIR="/var/www/html/bugzilla/lib/man/man3" INSTALLBIN="/var/ > > > www ? ? ? ? ? /html/bugzilla/lib/bin" INSTALLSCRIPT="/var/www/html/ > > > bugzilla/lib/bin" INSTALLDIRS=perl -- NOT ? ? ? ? ? ?OK > > > Pretty sure you need mod_perl-devel as well. > > > > [root at hqbugforce bugzilla]# yum install mod_perl > > > yum install mod_perl-devel > > > dkl > > > -- > > David Lawrence > > d... at mozilla.com > > > - > > To view or change your list settings, click here: > > > > Hi David, > > Thank you for your quick response. > > This helped me a lot, I spent a day to figure this out... > > But when I am restarting my Apache, ?I am getting the error like this: > > Starting httpd: httpd: Syntax error on line 149 of /etc/httpd/conf/ > httpd.conf: Cannot load /var/www/html/modules/mod_auth_basic.so > into server: /var/www/html/modules/mod_auth_basic.so: cannot open > shared object file: No such file or directory > > Thanks, > Rama Hi I installed a new apache and configured mod_perl into it and now I get the error like this 403 Forbidden You don't have permission to access /bugzilla on this server. Can anyone help me.? Thanks, Rama _______________________________________________ dev-apps-bugzilla mailing list dev-apps-bugzilla at lists.mozilla.org https://lists.mozilla.org/listinfo/dev-apps-bugzilla From rama.devi at gmail.com Wed Dec 28 21:13:32 2011 From: rama.devi at gmail.com (Rama) Date: Wed, 28 Dec 2011 13:13:32 -0800 (PST) Subject: Installing Bugzilla4.0.1 on CentOS References: <3da7871a-ffa7-42f3-be4b-08c769af19c9@s10g2000prs.googlegroups.com> Message-ID: On Dec 28, 12:10?pm, Rama wrote: > On Dec 27, 4:48?pm, Rama wrote: > > > > > > > > > > > On Dec 27, 2:54?pm, David Lawrence wrote: > > > > On 12/27/2011 05:44 PM, Rama wrote: > > > > > I'm getting the error like this: > > > > > Can't find the mod_perl include dir (reason: path /usr/include/httpd > > > > doesn't exist) at /usr/li ? ? ? ? ? b/perl5/vendor_perl/5.8.8/i386- > > > > linux-thread-multi/Apache2/Build.pm line 2030. > > > > Warning: No success on command[/usr/bin/perl Makefile.PL ?LIB="/var/ > > > > www/html/bugzilla/lib" INS ? ? ? ? ? TALLMAN1DIR="/var/www/html/ > > > > bugzilla/lib/man/man1" INSTALLMAN3DIR="/var/www/html/bugzilla/lib/ > > > > m ? ? ? ? ? an/man3" INSTALLBIN="/var/www/html/bugzilla/lib/bin" > > > > INSTALLSCRIPT="/var/www/html/bugzilla/lib ? ? ? ? ? /bin" > > > > INSTALLDIRS=perl] > > > > ? ?PHRED/Apache-SizeLimit-0.96.tar.gz > > > > ? ?/usr/bin/perl Makefile.PL ?LIB="/var/www/html/bugzilla/lib" > > > > INSTALLMAN1DIR="/var/www/html/bu ? ? ? ? ? gzilla/lib/man/man1" > > > > INSTALLMAN3DIR="/var/www/html/bugzilla/lib/man/man3" INSTALLBIN="/var/ > > > > www ? ? ? ? ? /html/bugzilla/lib/bin" INSTALLSCRIPT="/var/www/html/ > > > > bugzilla/lib/bin" INSTALLDIRS=perl -- NOT ? ? ? ? ? ?OK > > > > Pretty sure you need mod_perl-devel as well. > > > > > [root at hqbugforce bugzilla]# yum install mod_perl > > > > yum install mod_perl-devel > > > > dkl > > > > -- > > > David Lawrence > > > d... at mozilla.com > > > > - > > > To view or change your list settings, click here: > > > > > > Hi David, > > > Thank you for your quick response. > > > This helped me a lot, I spent a day to figure this out... > > > But when I am restarting my Apache, ?I am getting the error like this: > > > Starting httpd: httpd: Syntax error on line 149 of /etc/httpd/conf/ > > httpd.conf: Cannot load /var/www/html/modules/mod_auth_basic.so > > into server: /var/www/html/modules/mod_auth_basic.so: cannot open > > shared object file: No such file or directory > > > Thanks, > > Rama > > Hi > > I installed a new apache and configured mod_perl into it and now I get > the error like this > > 403 > Forbidden > > You don't have permission to access /bugzilla on this server. > > Can anyone help me.? > > Thanks, > Rama The error message I see in the logs is [crit] [client 10.16.1.13] (13)Permission denied: /usr/local/install/ apache/htdocs/bugzilla/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable _______________________________________________ dev-apps-bugzilla mailing list dev-apps-bugzilla at lists.mozilla.org https://lists.mozilla.org/listinfo/dev-apps-bugzilla From lpsolit at gmail.com Wed Dec 28 21:31:46 2011 From: lpsolit at gmail.com (=?ISO-8859-1?Q?Fr=E9d=E9ric_Buclin?=) Date: Wed, 28 Dec 2011 22:31:46 +0100 Subject: Installing Bugzilla4.0.1 on CentOS In-Reply-To: References: <3da7871a-ffa7-42f3-be4b-08c769af19c9@s10g2000prs.googlegroups.com> Message-ID: <4EFB8AC2.4010505@gmail.com> Rama, Please stop using this mailing-list to ask for help! Please visit http://www.bugzilla.org/support to select the right mailing-list. Thanks! LpSolit From olav at vitters.nl Thu Dec 29 09:12:17 2011 From: olav at vitters.nl (Olav Vitters) Date: Thu, 29 Dec 2011 10:12:17 +0100 Subject: Commit policy for http://bzr.mozilla.org/bugzilla/extensions/ ? Message-ID: <20111229091217.GB28466@bkor.dhs.org> Is there a policy to commit to http://bzr.mozilla.org/bugzilla/extensions/ ? I haven't used my bzr commit rights in ages, but could I: - add some new extension (might be somewhat specific extensions) - commit some terrible code (I'll work on cleaning up) or does everything have to go via reviews, even it concerns my own extensions? Another question: - what bzr command should I use to add a new extension under http://bzr.mozilla.org/bugzilla/extensions/ ? -- Regards, Olav (munging+resending) From olav at vitters.nl Thu Dec 29 09:20:59 2011 From: olav at vitters.nl (Olav Vitters) Date: Thu, 29 Dec 2011 10:20:59 +0100 Subject: Splinter extension Message-ID: <20111229092059.GC28466@bkor.dhs.org> [ Please keep Owen Taylor cc'ed ] Splinter is available at two locations: - http://fishsoup.net/software/splinter/ (original) - http://bzr.mozilla.org/bugzilla/extensions/splinter/4.0/files (ported to use some different javascript stuff) I know the ported extension had some security issues. Didn't notice any commits to the one @ bzr.mozilla.org. I'm looking for a version which is fully self-contained extension (no modifications to Bugzilla other than adding the extension). It *must* work with attachment_base as well as Bugzilla 4.2. This required some patches with the fishsoup one on Bugzilla 3.4 (don't want that!). Note that I also appreciate if it should support attachments.status (custom field used within GNOME). Any tips which version to choose? -- Regards, Olav From olav at vitters.nl Thu Dec 29 08:43:26 2011 From: olav at vitters.nl (Olav Vitters) Date: Thu, 29 Dec 2011 09:43:26 +0100 Subject: http://bzr.mozilla.org/bugzilla/extensions/ <-- commit policy? Message-ID: <20111229084326.GA28466@bkor.dhs.org> Hello, What is the policy to commit to http://bzr.mozilla.org/bugzilla/extensions/ ? I haven't used my commit rights in ages, but could I: - add some new extension - commit some terrible code or does everything have to go via reviews, even if I add my own extension(s)? Related question: - which bzr command should I use to add a new extension under http://bzr.mozilla.org/bugzilla/extensions/ ? -- Regards, Olav (resending, was subscribed with another email address) From reed at reedloden.com Thu Dec 29 09:45:53 2011 From: reed at reedloden.com (Reed Loden) Date: Thu, 29 Dec 2011 01:45:53 -0800 Subject: Splinter extension In-Reply-To: <20111229092059.GC28466@bkor.dhs.org> References: <20111229092059.GC28466@bkor.dhs.org> Message-ID: <20111229014553.3fc843d3@angelo.pretender.us> On Thu, 29 Dec 2011 10:20:59 +0100 Olav Vitters wrote: > Splinter is available at two locations: > - http://fishsoup.net/software/splinter/ (original) > - http://bzr.mozilla.org/bugzilla/extensions/splinter/4.0/files > (ported to use some different javascript stuff) http://bzr.mozilla.org/bmo/4.0/files/head:/extensions/Splinter/ is really the current up-to-date place for the code that runs on bmo. > I'm looking for a version which is fully self-contained extension (no > modifications to Bugzilla other than adding the extension). It *must* > work with attachment_base as well as Bugzilla 4.2. This required some > patches with the fishsoup one on Bugzilla 3.4 (don't want that!). From my understanding, the bmo version is completely self-contained, though dkl would know better. > Note that I also appreciate if it should support attachments.status > (custom field used within GNOME). Pretty sure that got ripped out in bmo's version, but it shouldn't be too difficult to add back, I bet. Hope that helps... ~reed -- Reed Loden reed at reedloden.com From mkanat at bugzilla.org Fri Dec 30 22:28:27 2011 From: mkanat at bugzilla.org (Max Kanat-Alexander) Date: Fri, 30 Dec 2011 14:28:27 -0800 Subject: Commit policy for http://bzr.mozilla.org/bugzilla/extensions/ ? In-Reply-To: <20111229091217.GB28466@bkor.dhs.org> References: <20111229091217.GB28466@bkor.dhs.org> Message-ID: <4EFE3B0B.4010609@bugzilla.org> On 12/29/2011 01:12 AM, Olav Vitters wrote: > Is there a policy to commit to http://bzr.mozilla.org/bugzilla/extensions/ ? There isn't a policy yet, no. If you need a repository for your extension, that might be a reasonable place for it. I believe it requires justdave or I to make a new directory there, but once we do you can control it, I believe. > or does everything have to go via reviews, even it concerns my own No, your own extensions don't have to go through our review process. -Max -- Max Kanat-Alexander Chief Architect, Community Lead, and Release Manager Bugzilla Project http://www.bugzilla.org/ From jochen.wiedmann at gmail.com Sat Dec 31 10:04:25 2011 From: jochen.wiedmann at gmail.com (Jochen Wiedmann) Date: Sat, 31 Dec 2011 11:04:25 +0100 Subject: How Checksetup Works In-Reply-To: <1158214890.2444.60.camel@localhost.localdomain> References: <1158214890.2444.60.camel@localhost.localdomain> Message-ID: On Thu, Sep 14, 2006 at 8:21 AM, Max Kanat-Alexander wrote: > ? ? ? ?Hey hey. > > ? ? ? ?So, the reorganization of checksetup.pl is basically done. You'll > notice it's a very short script, now. Quite some change, congrats! -- ?Morality is doing what is right, no matter what you are told. Religion is doing what you are told, no matter what is right.? H. L. Mencken (c.1925)