Posted on 2007-04-03 12:44:31-07 by t
bugzilla login page
#!/usr/bin/perl use WWW::Mechanize; my $link = "https://x.x/bt/query.cgi?GoAheadAndLogIn=1"; my $login = "x\@gx.com"; my $pass = "xx"; my $mech = WWW::Mechanize->new(); $mech->agent_alias( 'Windows IE 6' ); $mech->get( $link ); my %login = ( "Bugzilla_login"=> $login, "Bugzilla_password"=> $pass); $mech->set_fields(%login); $mech->click( 'GoAheadAndLogIn' );


# ./bt.pl
No such field 'Bugzilla_password' at /usr/lib/perl5/site_perl/5.8.8/WWW/Mechanize.pm line 1265

In new 2.2 version of bugzilla it returns that there is no such field 'Bugzilla_password' but in previous 1.x versions it worked ok, can someone suggest what might be wrong ?
Direct Responses: 10852 | Write a response
Posted on 2009-05-29 04:43:02-07 by jake in response to 4747
Re: bugzilla login page
I am new to perl.We are using bugzilla software.My requirement is I need a pass a encrypted password to bugzilla ,need to decrypt the encrypted password. I saw Bugzilla_login,Bugzilla_password ....in bubzilla home page can any one tell me where can i add (in which cgi script)the perl code to decrypt the encrypted password. Thanks, Jake
Direct Responses: Write a response
Perl Weekly newsletter
A free weekly newsletter for people who are busy to read all the blogs. click here to check it out.