Quote:
Originally posted by dwh
Can you explain the meaning of the error, why it happens? Just so we can learn php while we're at it...
|
Sure.
The script stores the
$templatesetid of the template set you are working on in a cookie called
$bbadmin_templatesetid.
Cookies are set through the PHP function
setcookie(..), which sets the cookie by sending an HTTP header to your browser (like any other cookie-setting mechanism).
Here comes the problem: HTTP headers
have to be sent to the browser before any display output has been sent to the browser. My cookie-setting system doesn't abide by that rule at the moment, as I tried to make as few modifications to the original template.php as possible, in order to make installation as easy as possible for all you guys and galls.
Therefore, when you run the script, the
setcookie(..) function is actually called
after PHP has output stuff to the browser, causing it to fail...
u n l e s s . . .
you have
output_buffering enabled in your php.ini file. This has the effect of preventing any output being sent to the browser until the PHP script has completely finished its execution. Therefore, the setcookie function is still valid, even though it's being called at an illegal point in the script. Using vB2's GZip compression system will have the same effect.
If you do not use output_buffering or gzip compression, or if you are using PHP3, then you should comment out the line in ktemplate.php that says
$usecookies = "yes";. This will prevent the setcookie(..) function from being called.
Does that make sense to you?