Recent Topics

1 Oct 30, 2006 18:53    

Hi,

I'm trying to include the b2evo blog in an existing website using the

php function: include ();

So basically I have a page with different sections and one of the sections is the blog.

I get the following error messages:

Warning: Cannot modify header information - headers already sent by (output started at /data/web/virtuals/londonsalsa.co.uk/www/isrl/IsraeliSoc/index.php:6) in /data/web/virtuals/londonsalsa.co.uk/www/isrl/IsraeliSoc/blog/inc/MODEL/sessions/_session.class.php on line 196

Warning: Cannot modify header information - headers already sent by (output started at /data/web/virtuals/londonsalsa.co.uk/www/isrl/IsraeliSoc/index.php:6) in /data/web/virtuals/londonsalsa.co.uk/www/isrl/IsraeliSoc/blog/inc/MODEL/skins/_skin.funcs.php on line 67

Does anyone know how to fix that?

thanks for your help!

TT

2 Oct 30, 2006 20:13

Read the error message(s)..

Also, just including the b2evo script might be tricky - you would have to make sure that you don't have to HTML blocks (HEAD/BODY) etc.

Hint: look at line 6 of your index.php.. there gets something outputted and therefor b2evo's session class cannot send HTTP headers anymore. Either use PHP's ouput buffering (http://php.net/ob_start()) or restructure your script.


Form is loading...