View Full Version : Can we use Server Side Includes with vBulletin?
Sephira
Fri 2nd Nov '01, 6:06pm
We are considering buying a license for vbulletin but would like to insinuate it into our current navigation scheme which uses include statements. Is that going to be a problem? Anyone else using vbulletin and server side includes? Thanks!
eva2000
Fri 2nd Nov '01, 6:10pm
you can use the php equivalent of php includes in your forum...
so it's possible to include your site's navigation into your forum
Sephira
Fri 2nd Nov '01, 6:18pm
Eva, thanks so much for the prompt response.
Second question: What do you mean use the PHP equivalent? I'm not at all familiar with PHP, only shtml.
Let me be specific and then maybe you can tell me if this will work.
Our index page ends with .shtml. All our pages end in .shtml.
We can call .html pages but are you saying I would have to call a .php page to use the bulletin board? We had UBB and that was calling .cgi pages.
Thanks!
eva2000
Fri 2nd Nov '01, 6:37pm
okay tradition SSI as you know it calling
filename.shtml in page.shtml
<!--#include virtual="/path/to/filename.shtml" -->
php equivalent
filename.shtml in page.php
<?php
include ("/path/to/filename.shtml");
?>
info http://www.php.net/manual/en/function.include.php
Raz Meister
Fri 2nd Nov '01, 6:40pm
Also check out the virtual() function: http://www.php.net/manual/en/function.virtual.php
vBulletin® v3.7.3, Copyright ©2000-2008, Jelsoft Enterprises Ltd.