What version of vbulletin are you using?
If you type in the script location directly from your browser, does it work? If not, then its a problem with your script.
Also, your php.ini might be set to disallow http php include calls, if you so need to enable it, or use the path call instead
Code:
ob_start();
require_once('/path/to/your/website/creds.php');
$creds = ob_get_contents();
ob_end_clean();
vB_Template::preRegister('postbit_legacy',array('creds' => $creds));
Otherwise, its a typo, if you are using this code, make sure you cut and paste it, have the path/url correct
Quote:
Originally Posted by MMODisneyForums
Thanks for the help. I tried all of that, and now every page in the forum is completely blank when I turn the plugin on. If I turn it off the forums are back. Is there any reason for this?
|