I am trying to include a separate file in the header. I have added to phpinclude_start:
Code:
ob_start();
include(/public/forum/forumheader.php);
$my_header = ob_get_contents();
ob_end_clean();
and added $my_header to the header template. I have tried the absolute path as above and also the server path but either way, nothing is output. It looks like it is not finding the file. Any ideas what I might be doing wrong - this is my first time setting up a vBulletin board.