人的头脑太复杂,时间过得久,有时候连自己也被自己骗了,记下来才是最真实的..
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

870 return $root->$item(@$args, $value)         ## RETURN
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
我要 [保存此页] [收藏此页] [复制此链接QQ/Msn发送]
收藏到 [天天] [和讯] [我摘] [天极] [新浪] [博采] [Del.icio.us]
我们推荐您 快去试试吧!
发表评论
表情
emotemotemotemotemot
emotemotemotemotemot
emotemotemotemotemot
emotemotemotemotemot
emotemotemotemotemot
打开HTML
打开UBB
打开表情
隐藏
记住我
昵称   密码   游客无需密码
网址   电邮   [注册]