Gossamer Forum
Home : Products : Gossamer Links : Discussions :

GLinks3 and Includes

Quote Reply
GLinks3 and Includes
I'm trying to integrate Article Manager and GLinks 3.0. Under Static, its working fine.

Menu Item
Menu Item
Menu Item
<% include /myfullpathnameto/articles/publish/category_list.html %>
Menu Item

The category_list.html has something like
<a class="mainlevel1" href="http://www.bowlingzone.com/articles/publish/cat_index_19.html">Announcements</a>
<a class="mainlevel1" href="http://www.bowlingzone.com/articles/publish/cat_index_20.html">About Bowling</a>

When under Dynamic view (or under dynamic sections such as Search) then the URL's get mangled to
http://www.bowlingzone.com/...at_index_19.html;d=1

Is there a way to prevent that? Somehow dynamic is parsing out the base URL and replacing for use in page.cgi when I don't want it to.

Thanks for the assist.

Lance
Quote Reply
Re: [lancerasmussen] GLinks3 and Includes In reply to
When you're in dynamic mode, any URL's that begin with db_cgi_url or build_root_url gets rewritten. If you don't want that to happen, the only thing you can do is move those pages out of those two URL paths.

Adrian
Quote Reply
Re: [brewt] GLinks3 and Includes In reply to
Ugggh.

ok. I created a virtual subdomain for articles and change the includes and that took care of that.

Note to GT staff. Would be nice to wrap a <%nopagecgi%> </%nopagecgi%> type template call that would prevent rewriting the db_cgi_url or build_root_url on the fly. for in between.

Lance