On Wed, 2009-02-11 at 23:45 -0800, Tsahi Asher wrote:
> Alright, looking at how I did it the last time, I noticed a missing ">" at 
> the "open" statement, so I wrote it like
> 
>     open OUTFILE, "> D:/debug.txt";
>     print OUTFILE Dumper( @INC );
>     close OUTFILE;
> 
> and got this at debug.txt:
> 
> $VAR1 = 'C:/Program Files (x86)/Apache Software 
> Foundation/Apache2.2/htdocs/bugs';
> $VAR2 = 'C:/Program Files/Scmbug/share/scmbug/lib';
> $VAR3 = 'C:/Perl/site/lib';
> $VAR4 = 'C:/Perl/lib';
> $VAR5 = '.';

Right. So it looks like the Bugzilla libraries have not been included in
the @INC.


Are you sure you added the above debugging statement AFTER the following
in Bugzilla.pm:init_specific ??

   # Include the bugzilla libraries
    unshift @INC, $self->installation_directory();
    chdir $self->installation_directory();

Can you also add:

    print OUTFILE Dumper( $self );

?? I don't understand why the installation_directory you specified in
daemon.conf is not listed in the @INC. This is the problem.

Attachment: signature.asc
Description: This is a digitally signed message part

_______________________________________________
scmbug-users mailing list
[email protected]
http://lists.mkgnu.net/cgi-bin/mailman/listinfo/scmbug-users

Reply via email to