2006年12月12日 16:28
Hi,
I was having same problem with bugzilla installation and finally i got
the solution here is the solution.
Open the file Stash.pm and then go to error line 870 and then
Comment or delete these two lines
And add these
eval { $result = $root->$item(@$args, $value); };
if ($@) {
die $@ if ref($@) || ($@ !~ /Can't locate object method/);
# failed to call object method, so try some fallbacks
if (UNIVERSAL::isa($root, 'HASH') && exists $root->{ $item })
{
$result = ($root->{ $item } = $value)
unless $default && $root->{ $item };
}
}
return $result; ## RETURN
It will solve your problem.
Thanks
Maqsood Ahmed
I was having same problem with bugzilla installation and finally i got
the solution here is the solution.
Open the file Stash.pm and then go to error line 870 and then
Comment or delete these two lines
870 return $root->$item(@$args, $value) ## RETURN
871 unless $default && $root->$item();
871 unless $default && $root->$item();
And add these
eval { $result = $root->$item(@$args, $value); };
if ($@) {
die $@ if ref($@) || ($@ !~ /Can't locate object method/);
# failed to call object method, so try some fallbacks
if (UNIVERSAL::isa($root, 'HASH') && exists $root->{ $item })
{
$result = ($root->{ $item } = $value)
unless $default && $root->{ $item };
}
}
return $result; ## RETURN
It will solve your problem.
Thanks
Maqsood Ahmed
我们推荐您
快去试试吧!
制作Linux的优盘(usb)启动盘
“alacner”知多少?







