Quote:
Originally Posted by rikmartin
the "require" bit added to the php_includes just causes the browser to hang and the page doesnt load,,, placed the url in the address bar is fine though
? confused
|
I had that problem aswell.
To fix it I added this bit of code to my vb2 index page (forumhome):
Code:
define('THIS_SCRIPT', 'index');
Then used this code in phpinclude:
Code:
// chatters -->
ob_start();
if (THIS_SCRIPT == 'index') {
@require('/home/user/public_html/chat/chatters.php3');
$chatters = ob_get_contents();
}
ob_end_clean();
// end chatters -->
Note the full path to the chat directory instead of using http.
Works fine now.
Nice hack btw, thanks!