Quote:
Originally posted by The Piper
In a way, it's what a portal system would allow me to do, but I don't like the way how every page using a portal system looks exactly the same as other pages... That way I could keep my own design but still use the nice features of vBindex.
|
This is why I've chosen not to use a portal system, because it looks the same as everyone elses site and is mean't for a lot of things I don't need or want to do, this way I can fully integrate with my forums and have a common design thoughout my site.
Here is the code you need to find and change for a muli-paged vBindex:
In the vbindex php file change (its right at the end):
PHP Code:
eval("dooutput(\"".gettemplate('home')."\");");
To:
PHP Code:
if (!$page)
// no page specified
{
eval("dooutput(\"".gettemplate('home')."\");");
}
else
eval("dooutput(\"".gettemplate("$page")."\");");
//eval("dooutput(\"".gettemplate('home')."\");");
to get the homepage use http://mysiteurl/forumsdir/vbindex.php to get any other page use http://mysiteurl/forumsdir/vbindex.php?page=template_name
Where:
vbindex.php is what you have called the index.php file included with vBindex
and
template_name is the name of the template that contains the page.
Let me know if you have any problems,
Regards,
Lee (NTLDR)