2
both errors are related. The real problem is the second message:
Quote:
Warning [PHP]: Cannot modify header information - headers already sent by (output started at /home/public_html/language/english/user.php:176) in file user.php line 59
The usual cause for this type of error is extra blank lines at the beginning or end of the file indicated by the "output started at..." part of the error.
In your case, take a look at /home/public_html/language/english/user.php and remove any blank lines at the end of the file (outside the closing php tag, ?> )