>>  Site Map >>  Forums >>  PHP-Nuke Common Problems & Solutions

Forum module - topics in forum:



PHP-Nuke Common Problems & Solutions - <font color=red>Look Here First For Your Problems And Get Their Solutions.</font><br><br>See also <a href="http://phpnuke-uk.net/modules.php?name=PHP-Nuke_HOWTO&page=common-installation-problems.html"><b>this</b></a> section of the phpnuke howto.<br>



Cannot modify header information - headers already..........

----> The Problem / Error Message
----> The Reason
----> The Solution

  1. Open the mainfile.php and the top of the file find:
    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') {

    Replace with:
    Code: :
     $phpver = phpversion();
    if ($phpver >= '4.0.4pl1')
    {
        ob_start('ob_gzhandler');
    }else if ($phpver > '4.0') {


  2. Open the .htaccess file in you nuke root directory (ie: where your congig.php file is located). If there is no .htaccess file there create one. Once you have opened / created the file add this line to it:
    Code: :
    PHP_FLAG output_buffering on
----> Still Having Problems







Added Poll




Attention! You are currently viewing sitemap page!
We strongly suggest to look at original content

Search from web

Valid HTML 4.01 Valid CSS