Gossamer Forum
Home : Products : Links 2.0 : Customization :

Bobsie: Question about Recommend It Mod

(Page 2 of 2)
> >
Quote Reply
Re: Bobsie: Question about Recommend It Mod In reply to
Try changing:

Quote:
($id, $go_url) = split /\Q$db_delim\E/;

to

Quote:
($id, $go_url) = split /$db_delim/;
Quote Reply
Re: Bobsie: Question about Recommend It Mod In reply to
Now, jump.cgi outputs url=2 and title= blank. So I get a 404 File Not Found Error and no title.
Quote Reply
Re: Bobsie: Question about Recommend It Mod In reply to
[Message deleted by Eliot Lee.]

Codes were not fully tested. Now they are, but since they are not "related" to this Topic, I choose to delete this response.

Regards,

------------------
Eliot Lee
Founder and Editor
Anthro TECH, L.L.C
http://www.anthrotech.com/
info@anthrotech.com
==========================
Coconino Community College
http://www.coco.cc.az.us/
Web Technology
Coordinator
elee@coco.cc.az.us

[This message has been edited by Eliot (edited July 14, 1999).]

[This message has been edited by Eliot (edited July 14, 1999).]
Quote Reply
Re: Bobsie: Question about Recommend It Mod In reply to
t-dog,

The last time I checked Bobsie was moderating this forum. I was just trying to post my comments in an existing Topic that related to them rather than starting a totally new Topic. This forum is already packed with redundant Topics and responses. I did read the thread and I DID feel that it was appropriate to post my comments.

Let Bobsie do his job. If you really feel that my comments are inappropriate, then may be you should send an email to the moderator, Bobsie. But ultimately, Bobsie is the one who makes decisions about how this forum is run! It is not your place nor given right to moderate this Forum!!

Good day!

------------------
Eliot Lee
Founder and Editor
Anthro TECH, L.L.C
http://www.anthrotech.com/
info@anthrotech.com
==========================
Coconino Community College
http://www.coco.cc.az.us/
Web Technology
Coordinator
elee@coco.cc.az.us

[This message has been edited by Eliot (edited July 14, 1999).]
Quote Reply
Re: Bobsie: Question about Recommend It Mod In reply to
I'm sorry if I offended you. I didn't mean to accuse you. Just wanted to let you know you misunderstood the problem.
Quote Reply
Re: Bobsie: Question about Recommend It Mod In reply to
t_dog,

My test show that this code works. While I added the "chomp;" line, it made no appreciable difference in the test results. So, if it is not working for you, something else is wrong. Check for typos.

Code:
while (<URL> ) {
$find++ == $rand or next;
chomp;
($id, $go_url) = split /\Q$db_delim\E/;
%link_rec = &get_record($id);
$rec_title = $link_rec{'Title'};
$rec_title =~ s/ /\+/g;
$goto = "http://freesources.com/cgi-bin/FrameIt.cgi?url=$go_url&title=$rec_title";
last;
}
Quote Reply
Re: Bobsie: Question about Recommend It Mod In reply to
Thank you very much, Bobsie. Works fine now.

It must have been a typo, as you said. I copied your new code again and pasted it into jump.cgi, and it works.

Thanks again.
> >