I think I figured this out. It's a bug in vBulletin. Edit "global.php" and change the following:
require('./includes/class_bootstrap.php');
Change that to:
require_once('./includes/class_bootstrap.php');
I was having the same exact problem. I noticed that the problem disappeared after I disabled one of my own customizations (mine was coded correctly). So I tracked it down further to the problem above.
|