Re: Problem installing Bugzilla 3.0 on a linux box - Mozilla
This is a discussion on Re: Problem installing Bugzilla 3.0 on a linux box - Mozilla ; On Jun 1, 3:14 pm, "Elliot Barnett" wrote:
> Hi All
>
> I am trying to get Bugzilla up and running on a Linux box:
>
> 2.4.21-4.EL
>
> When I point my browser to my Bugzilla location, ...
-
Re: Problem installing Bugzilla 3.0 on a linux box
On Jun 1, 3:14 pm, "Elliot Barnett" wrote:
> Hi All
>
> I am trying to get Bugzilla up and running on a Linux box:
>
> 2.4.21-4.EL
>
> When I point my browser to my Bugzilla location, I get an internal
> server error and these errors in the httpd error log file:
>
> [Fri Jun 01 13:21:59 2007] [error] [client 192.168.20.69] Premature end
> of script headers: index.cgi
>
> [Fri Jun 01 13:21:59 2007] [error] [client 192.168.20.69] Use of
> uninitialized value in concatenation (.) or string at Bugzilla/Auth.pm
> line 44.
>
> [Fri Jun 01 13:21:59 2007] [error] [client 192.168.20.69] Pseudo-hashes
> are deprecated at Bugzilla/Auth/Login/Stack.pm line 34.
>
> [Fri Jun 01 13:21:59 2007] [error] [client 192.168.20.69] Can't locate
> Bugzilla/Auth/Login/.pm in @INC (@INC contains: .
> /usr/lib/perl5/5.8.0/i386-linux-thread-multi /usr/lib/perl5/5.8.0
> /usr/lib/perl5/site_perl/5.8.0/i386-linux-thread-multi
> /usr/lib/perl5/site_perl/5.8.0 /usr/lib/perl5/site_perl
> /usr/lib/perl5/vendor_perl/5.8.0/i386-linux-thread-multi
> /usr/lib/perl5/vendor_perl/5.8.0 /usr/lib/perl5/vendor_perl) at
> Bugzilla/Auth/Login/Stack.pm line 36.
>
> Most web references I've seen out there on the Premature end of... error
> say it has to do with permissions. I believe I have set the permissions
> correctly on the files (755, owned by apache and group ownership to
> root).
>
> Line 44 of Auth.pm is:
>
> $params->{Login} ||= Bugzilla->params->{'user_info_class'} . ',Cookie';
>
> The rest of the problems are in the Stack.pm file in this function:
>
> sub new {
>
> my $class = shift;
>
> my $self = $class->SUPER::new(@_);
>
> my $list = shift;
>
> $self->{_stack} = [];
>
> foreach my $login_method (split(',', $list)) {
>
> require "Bugzilla/Auth/Login/${login_method}.pm";
>
> push(@{$self->{_stack}},
>
> "Bugzilla::Auth::Login::$login_method"->new(@_));
>
> }
>
> return $self;
>
> }
>
> I have never seen these types of problems before during Bugzilla
> installs which I have done a couple of times at previous companies.
>
> My checksetup still returns an error:
>
> Checking for DBD-mysql (v2.9003) ok: found v4.004
> /usr/bin/perl: relocation error:
> /usr/lib/perl5/site_perl/5.8.0/i386-linux-thread-multi/auto/DBD/mysql/my
> sql.so: undefined symbol: mysql_warning_count
>
> I don't know if this is related or not. The rest of the checksetup is
> fine except flagging the optional Perl modules I haven't installed yet
> (graphing stuff)
>
> I would very much appreciate any help on this! It is stopping me from
> getting a major project underway.
>
> This is Bugzilla 3.0.
>
> Thanks!
>
> Elliot
Any luck on this. I have same problem, except testserver.pl is showing
everything ok.
Use of uninitialized value in concatenation (.) or string at Bugzilla/
Auth.pm line 44.
-
Re: Problem installing Bugzilla 3.0 on a linux box
On Jun 16, 2:52 am, carv...@gmail.com wrote:
> On Jun 1, 3:14 pm, "Elliot Barnett" wrote:
>
> > Hi All
>
> > I am trying to get Bugzilla up and running on a Linux box:
>
> > 2.4.21-4.EL
>
> > When I point my browser to my Bugzilla location, I get an internal
> > server error and these errors in the httpd error log file:
>
> > [Fri Jun 01 13:21:59 2007] [error] [client 192.168.20.69] Premature end
> > of script headers: index.cgi
>
> > [Fri Jun 01 13:21:59 2007] [error] [client 192.168.20.69] Use of
> > uninitialized value in concatenation (.) or string at Bugzilla/Auth.pm
> > line 44.
>
> > [Fri Jun 01 13:21:59 2007] [error] [client 192.168.20.69] Pseudo-hashes
> > are deprecated at Bugzilla/Auth/Login/Stack.pm line 34.
>
> > [Fri Jun 01 13:21:59 2007] [error] [client 192.168.20.69] Can't locate
> > Bugzilla/Auth/Login/.pm in @INC (@INC contains: .
> > /usr/lib/perl5/5.8.0/i386-linux-thread-multi /usr/lib/perl5/5.8.0
> > /usr/lib/perl5/site_perl/5.8.0/i386-linux-thread-multi
> > /usr/lib/perl5/site_perl/5.8.0 /usr/lib/perl5/site_perl
> > /usr/lib/perl5/vendor_perl/5.8.0/i386-linux-thread-multi
> > /usr/lib/perl5/vendor_perl/5.8.0 /usr/lib/perl5/vendor_perl) at
> > Bugzilla/Auth/Login/Stack.pm line 36.
>
> > Most web references I've seen out there on the Premature end of... error
> > say it has to do with permissions. I believe I have set the permissions
> > correctly on the files (755, owned by apache and group ownership to
> > root).
>
> > Line 44 of Auth.pm is:
>
> > $params->{Login} ||= Bugzilla->params->{'user_info_class'} . ',Cookie';
>
> > The rest of the problems are in the Stack.pm file in this function:
>
> > sub new {
>
> > my $class = shift;
>
> > my $self = $class->SUPER::new(@_);
>
> > my $list = shift;
>
> > $self->{_stack} = [];
>
> > foreach my $login_method (split(',', $list)) {
>
> > require "Bugzilla/Auth/Login/${login_method}.pm";
>
> > push(@{$self->{_stack}},
>
> > "Bugzilla::Auth::Login::$login_method"->new(@_));
>
> > }
>
> > return $self;
>
> > }
>
> > I have never seen these types of problems before during Bugzilla
> > installs which I have done a couple of times at previous companies.
>
> > My checksetup still returns an error:
>
> > Checking for DBD-mysql (v2.9003) ok: found v4.004
> > /usr/bin/perl: relocation error:
> > /usr/lib/perl5/site_perl/5.8.0/i386-linux-thread-multi/auto/DBD/mysql/my
> > sql.so: undefined symbol: mysql_warning_count
>
> > I don't know if this is related or not. The rest of the checksetup is
> > fine except flagging the optional Perl modules I haven't installed yet
> > (graphing stuff)
>
> > I would very much appreciate any help on this! It is stopping me from
> > getting a major project underway.
>
> > This is Bugzilla 3.0.
>
> > Thanks!
>
> > Elliot
>
> Any luck on this. I have same problem, except testserver.pl is showing
> everything ok.
>
> Use of uninitialized value in concatenation (.) or string at Bugzilla/
> Auth.pm line 44.
Any luck of this? I have the same problem after installation of latest
version, although my line 44 shows:
$params->{Verify} ||= Bugzilla->params->{'user_verify_class'};
(A line after the 'login' line)
-
Re: Problem installing Bugzilla 3.0 on a linux box
I actually had this problem in Windows but my problem was related to
the fact that I was working in C:\Bugzilla but my IIS was pointing
towards another copy of Bugzilla in c:\inetpub\bugsroot. I have no
idea as I am new to Perl but I cleared this up by copying everything
in my \bugsroot folder to the c:\bugzilla folder.
-
Re: Problem installing Bugzilla 3.0 on a linux box
Weird I replace $login_method in the stack.pm with Cookie, seems to
work now.
On Jul 3, 12:31 am, Storminato...@gmail.com wrote:
> I actually had this problem in Windows but my problem was related to
> the fact that I was working in C:\Bugzillabut my IIS was pointing
> towards another copy ofBugzillain c:\inetpub\bugsroot. I have no
> idea as I am new to Perl but I cleared this up by copying everything
> in my \bugsroot folder to the c:\bugzillafolder.
-
Re: Problem installing Bugzilla 3.0 on a linux box
Joe,
2007/7/12, joe :
> Weird I replace $login_method in the stack.pm with Cookie, seems to
> work now.
other threads discussing this very issue indicate that you're probably
seeing https://bugzilla.mozilla.org/show_bug.cgi?id=380077.
Regards
Marc
-
Re: Problem installing Bugzilla 3.0 on a linux box
Thanks Mark, I guess my fix did not work. I read the thread but I did
not find a params folder or a data folder. Not sure what is
happening . I am running Fedora. Ill keep reading may Ill find a
solution
On Jul 12, 12:10 pm, "Marc Schumann" wrote:
> Joe,
>
> 2007/7/12, joe :
>
> > Weird I replace $login_method in the stack.pm with Cookie, seems to
> > work now.
>
> other threads discussing this very issue indicate that you're probably
> seeinghttps://bugzilla.mozilla.org/show_bug.cgi?id=380077.
>
> Regards
> Marc
-
Re: Problem installing Bugzilla 3.0 on a linux box
It worked looks like I forgot to re run checkconfig. Thanks
On Jul 12, 12:10 pm, "Marc Schumann" wrote:
> Joe,
>
> 2007/7/12, joe :
>
> > Weird I replace $login_method in the stack.pm with Cookie, seems to
> > work now.
>
> other threads discussing this very issue indicate that you're probably
> seeinghttps://bugzilla.mozilla.org/show_bug.cgi?id=380077.
>
> Regards
> Marc