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

bug - page.cgi

Quote Reply
bug - page.cgi
I chased my tail a bit tonight, before I realized that I was using page.cgi for some reason not the direct links.

But when using page.cgi <%Days_Old%> is not processed, and of course generates an error, and also when viewing the category page, <%description%> is not available....

It of course all works with pre-generated pages, I found this stuff by accident, so I didn't keep better notes than that -- I was rushing to install the upgrade, and didn't have the luxury to hunt bugs.

you can see the effects at:
http://www.postcards.com/cgi-bin/pcSQL/page.cgi
vs
http://www.postcards.com/pcSQL/pages/
Quote Reply
Re: bug - page.cgi In reply to
see this in generate_category_page

Code:
$OUT{category_name} = $category_r->{'Name'};

add

Code:
$OUT{description} = $category_r->{'Description'};

below it.

as fir days_old.. this is for site_html_link.. and it should work is you uncommented the code.. (which by default, is commented)

jerry