Gossamer Forum
Home : Products : Gossamer Links : Version 1.x :

CGI=HASH(0x6d048) ???

Quote Reply
CGI=HASH(0x6d048) ???
Hi,
In the search results template, when I inserted the <%term%> I get a CGI=HASH(0x6d048) instead of the term searched.

How can I solve this?

Thanks
Quote Reply
Re: CGI=HASH(0x6d048) ??? In reply to
I have seen this before on one system, and I think it's to do with CGI.pm. If you run setup.cgi, what version of CGI.pm are you using?

Try editing search.cgi at line 76 and change:

$in{'term'} = $in->escape ($query);

to either:

$in{'term'} = CGI->escape ($query);

or:

$in{'term'} = &CGI::escape ($query);

Let me know which works for you.

Cheers,

Alex