Having problems getting the code to work in the phpinclude template. This bit (adapated for my domain):
Quote:
// chatters -->
ob_start();
require("http://chat.clubdogma.com/chatters.php3");
$chatters = ob_get_contents();
ob_end_clean();
// end chatters -->
|
Whenever I add this in, I get the following error when trying to enter phpmychat :
Quote:
Fatal error: Call to unsupported or undefined function ob_start() in ./global.php on line 314
|
which looks like I'm not running PHP4, but definitely am (4.2.3).
The chatbox appears fine in the forum (though always with no users as chat doesn't work), chatters.php3 works fine when run directly etc.
The chat and forum are integrated using Stasiks integration hack, which works perfectly as long as the above code isn't in phpinclude..
Anyone got any ideas?