» Log in
User Name:

Password:

Not a member yet?
Register Now!
» Online Users: 46
0 members and 46 guests
No Members online
Most users ever online was 611, 03-21-2008 at 11:10 PM.
» .::.
Web Hosting - web hosting, dedicated servers and web design services
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
Football Betting - best nfl betting promotions at sportsbook.com.
Oral Chelation - initial cleansing of your veins & arteries
Portatiles - Ofertas en Ordenadores y Portatiles. Increibles Ofertas DELL.

Register Now! Contact Us

About this Page
This is a discussion on about forum within the Nuke 7.x - General forums, part of the PHP-Nuke 7.x category; hi guys i have a ques... i just download the phpnuke and than i made forum for my site but ...


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

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 10-14-2004, 12:45 AM
Junior Member
 
Join Date: Oct 2004
Posts: 6
about forum
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
  #2 (permalink)  
Old 10-14-2004, 01:50 AM
Moderator
 
Join Date: Jan 2003
Posts: 338
http://www.nukefixes.com/ftopict-36.html
__________________
NukeResources | ScriptHeaven
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 10-14-2004, 12:35 PM
Junior Member
 
Join Date: Oct 2004
Posts: 6
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
  #4 (permalink)  
Old 10-14-2004, 12:53 PM
Moderator
 
Join Date: Jan 2003
Posts: 338
The post is there
__________________
NukeResources | ScriptHeaven
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 10-14-2004, 05:22 PM
Junior Member
 
Join Date: Oct 2004
Posts: 6
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
  #6 (permalink)  
Old 10-14-2004, 06:02 PM
Moderator
 
Join Date: Jan 2003
Posts: 338
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;
__________________
NukeResources | ScriptHeaven
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



All times are GMT -5. The time now is 11:19 AM.


Design by Vjacheslav Trushkin, color scheme by ColorizeIt!.

LinkBacks Enabled by vBSEO 3.1.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