• Howdy! Welcome to our community of more than 130.000 members devoted to web hosting. This is a great place to get special offers from web hosts and post your own requests or ads. To start posting sign up here. Cheers! /Peo, FreeWebSpace.net
managed wordpress hosting

help with website error

harris24982

New Member
I'm getting this error when trying to access the members are of my site, it only happens when the correct password is put in (wrong password directs to password retraval)

Warning: Cannot modify header information - headers already sent by (output started at /home/adulttra/public_html/common.php:177) in /home/adulttra/public_html/login.php on line 55

its replicated for 4 lines in the same file,

any ideas what the problem is?
 
There's probably an echo above the header. Most setups that I've encountered will throw errors if you try and place any HTML above header tags. Anyway, try placing this at the top of your page:

<? ob_start(); ?>

Ans then place this at the very bottom:

<? ob_flush(); ?>
 
Back
Top