
11-03-2004, 01:50 PM
|
|
Senior Member
|
|
Join Date: Sep 2002
Posts: 2,905
|
|
|
Quote:
|
The most simple solution to try, is to turn output_buffering on
If you control your php.ini file, do this:
output_buffering = On
Or, create/add this line to an .htaccess file and place it in your Nuke root directory:
PHP_FLAG output_buffering On
Lastly, try placing this line as the first line of code in your mainfile.php, after the comment block. This has to be made available for every script you use, so either you code it in every script or strategically place it in a script that is common to all scripts.
ini_set("output_buffering","1");
|
check this post also.
http://www.nukefixes.com/modules.php...viewtopic&t=36
also, try searching the forums first next time before you post.
|