Jump to content

getting this error


glow

Recommended Posts

dunno how to get rid of this error. can anyone help me

 

------------------------

 

Warning: Cannot modify header information - headers already sent by (output started at /home/duneglo/public_html/includes/joomla.php:12462) in /home/duneglo/public_html/includes/joomla.php on line 1418

Warning: Cannot modify header information - headers already sent by (output started at /home/duneglo/public_html/includes/joomla.php:12462) in /home/duneglow/public_html/index.php on line 251

Warning: Cannot modify header information - headers already sent by (output started at /home/duneglow/public_html/includes/joomla.php:12462) in /home/duneglow/public_html/index.php on line 252

Warning: Cannot modify header information - headers already sent by (output started at /home/duneglo/public_html/includes/joomla.php:12462) in /home/duneglow/public_html/index.php on line 253

Warning: Cannot modify header information - headers already sent by (output started at /home/duneglo/public_html/includes/joomla.php:12462) in /home/duneglow/public_html/index.php on line 254

Warning: Cannot modify header information - headers already sent by (output started at /home/duneglo/public_html/includes/joomla.php:12462) in /home/duneglow/public_html/index.php on line 255

Warning: Cannot modify header information - headers already sent by (output started at /home/duneglo/public_html/includes/joomla.php:12462) in /home/duneglo/public_html/templates/ja_drimia/ja_templatetools.php on line 25

Warning: Cannot modify header information - headers already sent by (output started at /home/duneglo/public_html/includes/joomla.php:12462) in /home/duneglo/public_html/templates/ja_drimia/ja_templatetools.php on line 26

Warning: Cannot modify header information - headers already sent by (output started at /home/duneglo/public_html/includes/joomla.php:12462) in /home/duneglo/public_html/templates/ja_drimia/ja_templatetools.php on line 27

Warning: Cannot modify header information - headers already sent by (output started at /home/duneglo/public_html/includes/joomla.php:12462) in /home/duneglo/public_html/templates/ja_drimia/ja_templatetools.php on line 28

Link to comment
Share on other sites

this is the code from the index php

 

 

 

$_MOS_OPTION['buffer'] = ob_get_contents();

ob_end_clean();

initGzip();

header( 'Expires: Mon, 26 Jul 1997 05:00:00 GMT' );
header( 'Last-Modified: ' . gmdate( 'D, d M Y H:i:s' ) . ' GMT' );
header( 'Cache-Control: no-store, no-cache, must-revalidate' );
header( 'Cache-Control: post-check=0, pre-check=0', false );
header( 'Pragma: no-cache' );

// display the offline alert if an admin is logged in
if (defined( '_ADMIN_OFFLINE' )) {
include( $mosConfig_absolute_path .'/offlinebar.php' );

 

 

 

 

 

 

 

 

and this is the code from the ja_templatetools php

 

 

 

			$ja_font_size = $_COOKIE['FontSize'];
	}
}else{
	$exp = time() + 60*60*24*355;
	setcookie ('JATheme', $ja_template_name, $exp, '/');
	setcookie ('ColorCSS', $ja_color_default, $exp, '/');
	setcookie ('ScreenType', $ja_width_default, $exp, '/');
	setcookie ('FontSize', $ja_font_size_default, $exp, '/');
}

if (!is_file("$ja_template_absolute_path/css/colors/$ja_color.css")) $ja_color = $ja_color_default;

Link to comment
Share on other sites

Your problem lies in joomla.php, which I'm guessing is where the function initGzip() is located. It is outputting some text or html to the browser, which is causing your error. Try moving initGzip() down below all your header functions, and see if that works.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.