Nukemods Forum  
» Log in
User Name:

Password:

Not a member yet?
Register Now!
» Online Users: 33
0 members and 33 guests
No Members online
Most users ever online was 611, 03-21-2008 at 11:10 PM.
» .::.
Online Degree - search for 1000+ online degrees, online colleges & online universities.
Tattoo - we are a group of tattoo enthusiasts
Gexa Energy - your absolute best choice in electric service
Texas electricity - save on electric rates
The Lyric Archive
Dining Room Furniture

Go Back   Nukemods Forum > PHP-Nuke 7.x > Nuke 7.x - General

Reply
 
LinkBack Thread Tools Display Modes
about forum
Old
  (#1 (permalink))
Junior Member
 
Status: Offline
Posts: 6
Join Date: Oct 2004
about forum - 10-14-2004, 12:45 AM

hi guys i have a ques... i just download the phpnuke and than i made forum for my site but i think something wrog whit it every time I open the forum some warning comes up and it says....

Warning: Cannot add header information - headers already sent by (output started at c:\apache\htdocs\html\header.php:32) in c:\apache\htdocs\html\includes\sessions.php on line 222

Warning: Cannot add header information - headers already sent by (output started at c:\apache\htdocs\html\header.php:32) in c:\apache\htdocs\html\includes\sessions.php on line 223



and this too...

Warning: Cannot add header information - headers already sent by (output started at c:\apache\htdocs\html\header.php:32) in c:\apache\htdocs\html\includes\page_header.php on line 492

Warning: Cannot add header information - headers already sent by (output started at c:\apache\htdocs\html\header.php:32) in c:\apache\htdocs\html\includes\page_header.php on line 494

Warning: Cannot add header information - headers already sent by (output started at c:\apache\htdocs\html\header.php:32) in c:\apache\htdocs\html\includes\page_header.php on line 495


so i hope u guys know this problem.... thanx
   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old
  (#2 (permalink))
Moderator
 
Status: Offline
Posts: 338
Join Date: Jan 2003
10-14-2004, 01:50 AM

http://www.nukefixes.com/ftopict-36.html
   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old
  (#3 (permalink))
Junior Member
 
Status: Offline
Posts: 6
Join Date: Oct 2004
10-14-2004, 12:35 PM

i couldn't find anything

pls. help :roll:
   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old
  (#4 (permalink))
Moderator
 
Status: Offline
Posts: 338
Join Date: Jan 2003
10-14-2004, 12:53 PM

The post is there
   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old
  (#5 (permalink))
Junior Member
 
Status: Offline
Posts: 6
Join Date: Oct 2004
10-14-2004, 05:22 PM

can u just tell me cuz i cant understand anything just give me the code pls
   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old
  (#6 (permalink))
Moderator
 
Status: Offline
Posts: 338
Join Date: Jan 2003
10-14-2004, 06:02 PM

Near the start of mainfile.php find:
Code:
42 = phpversion(); 
if (42 >= '4.0.4pl1' && strstr(Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1),'compatible')) { 
    if (extension_loaded('zlib')) { 
        ob_end_clean(); 
        ob_start('ob_gzhandler'); 
    } 
} else if (42 > '4.0') {

change to:

Code:
42 = phpversion(); 
if (42 >= '4.0.4pl1') 
{ 
    ob_start('ob_gzhandler'); 
}else if (42 > '4.0') {
For newer versions of PHP-Nuke find:
Code:
if ($phpver >= '4.0.4pl1' && strstr($_SERVER["HTTP_USER_AGENT"],'compatible')) {
    if (extension_loaded('zlib')) {
	ob_end_clean();
	ob_start('ob_gzhandler');
    }
Change to:
Code:
if ($phpver >= '4.0.4pl1') {
	ob_start('ob_gzhandler');
or:

add the following line to a .htaccess file placed in your root Nuke dir.
Code:
PHP_FLAG output_buffering on
or if you have access to your php.ini, set:
Code:
output_buffering=on;
   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On




vBulletin Skin developed by: vBStyles.com


LinkBacks Enabled by vBSEO 3.2.0

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31