Re: Cookies and sent headers

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



You best option would be to go through all of your include'd or require'd
files and make sure there is no whitespace before and after you open your
php tags. Those are often the cause for such problems. The easy way would
indeed be to use output buffering. In that case, put the call to ob_start();
on the first line of the file you're calling. You will still have to make
sure to not have any whitespace before your <?php opening.

To even bypass that, the output_buffering ini setting might be useful. Alter
it in your php.ini if you can, otherwise try your apache vhost configuration
or .htaccess. The syntax there is:

     php_flag output_buffering On

Good luck!

On 18/08/07, Kelvin Park <kelvinpark86@xxxxxxxxx> wrote:
>
> Kelvin Park wrote:
> > Otto Wyss wrote:
> >> If built a simple login page and store any information within
> >> $_SESSION's. Yet I'd like to move these into cookies but I always get
> >> an error about sent headers. Is there a way to circumvent this
> >> problem without changing too much in the page?
> >>
> >> The setting of the cookies happens just at the end of the page.
> >>
> >>   if (!$errortext and $Anmelden) {
> >>     if (!empty($Permanent)) {
> >>       $expires = time()+ 365 * 86400;  // 365 days
> >>       setcookie ("l.Lastname", $_SESSION['l_Lastname'], $expires);
> >>       setcookie ("l.Firstname", $_SESSION['l_Firstname'], $expires);
> >>       setcookie ("l.Email1", $_SESSION['l_Email1'], $expires);
> >>       setcookie ("l.Email2", $_SESSION['l_Email2'], $expires);
> >>     }
> >>     echo "<script type=\"text/javascript\">
> >>           parent.location.replace('$index_php";
> >>           </script>";
> >>     exit;
> >>   }
> >>
> >> O. Wyss
> >>
> > ob_start() might help
> >
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>


-- 
Interpotential.com
Phone: +31615397471

[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux