I am trying to intergrate my website with vbulletin. Everything is going great except when I want to post a thread or reply to one. I get this error:
No Thread specified. If you followed a valid link, please notify the administrator.
In order to be able to put my websites navbar with vbull's I made a plugin containing the following:
PHP Code:
ob_start();
include('/mysite/TEST.php');
$includedphp = ob_get_contents();
ob_end_clean();
The plugin is set to global_start
You can see the site at
http://www.semobid.com/VB
I added this to my header template: $includedphp.
I know it is the plugin causing the problem, because when I disable the plugin the error goes away.
My question is what can I do to make it work. I have already updated the counter and it still does not work.
Here is the TEST.PHP page that the plugin links to:
PHP Code:
<? session_start();
include_once ("../config/config.php");
include ("../themes/".$setts['default_theme']."/header.php");
?>
I appreciate any help you can offer.