MyBB Community Forums

Full Version: Site Integration
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Currently I have this code

<?php

{header_code}

include("mybb_directory/index.php");

{footer_code}
?>

I am getting this error

Warning: Cannot modify header information - headers already sent by (output started at /home2/pba2007/public_html/functions_header.php:11) in /home2/pba2007/public_html/community/inc/functions.php on line 1133

Warning: Cannot modify header information - headers already sent by (output started at /home2/pba2007/public_html/functions_header.php:11) in /home2/pba2007/public_html/community/inc/functions.php on line 78

All help are appreciated.
Thanks in advance!
You cannot output anything before MyBB has been executed - this is because we need to set cookies etc which can't be done if the header has already been sent.

The best way to integrate your forum in to your site is via modifying MyBB and adding your own header HTML in to the MyBB templates.
Oh.

Thanks.