It seems I have one user receiving the following errors, but no one else is. Is this a problem somehow on their computer? Or is there something I can do to help them? As it stands I also use Firefox, but I'm having no issues, so not sure what to do. Thanks in advance for any help!
Quote:
At the top of the page on all the forum pages is the following:
Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/header.php:32) in /var/www/html/includes/sessions.php on line 291
Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/header.php:32) in /var/www/html/includes/sessions.php on line 292
Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/header.php:32) in /var/www/html/includes/page_header.php on line 484
Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/header.php:32) in /var/www/html/includes/page_header.php on line 490
Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/header.php:32) in /var/www/html/includes/page_header.php on line 491
When I try and PM someone I get this and I dont get the PM interface
Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/header.php:32) in /var/www/html/includes/sessions.php on line 291
Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/header.php:32) in /var/www/html/includes/sessions.php on line 292
Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/header.php:32) in /var/www/html/modules/Private_Messages/index.php on line 1140
And when I try and post a thread I get this and no post interface:
Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/header.php:32) in /var/www/html/includes/sessions.php on line 291
Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/header.php:32) in /var/www/html/includes/sessions.php on line 292
Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/header.php:32) in /var/www/html/modules/Forums/posting.php on line 375
doctornuke Corporal
Joined: Oct 15, 2003
Posts: 58
Posted:
Tue Dec 25, 2007 10:25 pm
It's an error due to output buffering in php ini. setting of server
you can override this by put this line in .htaccess
PHP_FLAG output_buffering On
If it's not work , can do by
modify the first line of mainfle.php . add
ini_set("output_buffering","1");
if not work then have to do as chatserv recommended
Code:
$phpver = phpversion();
if ($phpver >= '4.0.4pl1' && strstr($HTTP_USER_AGENT,'compatible')) {
if (extension_loaded('zlib')) {
ob_end_clean();
ob_start('ob_gzhandler');
}
} else if ($phpver > '4.0') {
change to
$phpver = phpversion();
if ($phpver >= '4.0.4pl1')
{
ob_start('ob_gzhandler');
}else if ($phpver > '4.0') {
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum