Is there a simple way to syndicate a forum?
Aug 3, 2004, 9:44 AM
Veteran / Moderator (18436 posts)
Aug 3, 2004, 9:44 AM
Post #2 of 4
Views: 2989
Sure. You could make a new tempalte set, for example "syndication", and then call it with;
gforum.cgi?t=syndication
You may need to pass t=setname along in each URL though.
Hope that helps.
Cheers
Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
gforum.cgi?t=syndication
You may need to pass t=setname along in each URL though.
Hope that helps.
Cheers
Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Aug 4, 2004, 6:34 AM
Veteran / Moderator (18436 posts)
Aug 4, 2004, 6:34 AM
Post #4 of 4
Views: 2974
In theory, yes. You could just setup some mod_rewrite, so it does stuff like this (for each of the functions/commands);
http://www.domainc.om/cgi-bin/forum/forum.cgi?;category=7
... could translate to;
http://www.mymaindomain.com/cgi-bin/gforum/gforum.cgi?;category=7&t=mydomain
This could be done with something like (on the domain.com site, not mymaindomain.com);
^forum/gforum\.cgi?category=.* http://www.mymaindomain.com/cgi-bin/gforum/gforum.cgi?;category=$1&t=mydomain [L]
You could probably get a few ideas/pointers by looking at the "Search Engine Friendly" mod_rewrite codes; as they list the main functions.
Hope that helps.
Cheers
Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
http://www.domainc.om/cgi-bin/forum/forum.cgi?;category=7
... could translate to;
http://www.mymaindomain.com/cgi-bin/gforum/gforum.cgi?;category=7&t=mydomain
This could be done with something like (on the domain.com site, not mymaindomain.com);
^forum/gforum\.cgi?category=.* http://www.mymaindomain.com/cgi-bin/gforum/gforum.cgi?;category=$1&t=mydomain [L]
You could probably get a few ideas/pointers by looking at the "Search Engine Friendly" mod_rewrite codes; as they list the main functions.
Hope that helps.
Cheers
Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!