|
Posted by bashar on 07/13/07 09:37
On Jul 13, 11:44 am, Markus <derernst@NO#SP#AMgmx.ch> wrote:
> bashar schrieb:
>
> > Hi,
>
> > I keep getting this error: Warning: session_start() [function.session-
> > start]: Cannot send session cookie - headers already sent by (output
> > started at c:\wamp\www\testlogin.php:1) in c:\wamp\www\testlogin.php
> > on line 2
>
> > All people are referring to extra line at the end and related issues,
> > but it doesn't seem to be my problem:
>
> > Here is the code:
> > ====================
> > <?php
> > session_start();?>
>
> There must be some kind of output at line 1 before the <?php statement.
> If you don't see a space or other character there, my guess is that you
> use some UTF-* encoding, probably UTF-8, and your code editor inserts a
> BOM at the beginning of the file, but does not display it.
>
> To find out, you need to get a code editor such as VIM or Maguma, and
> open the PHP file. If you see some strange characters before <?php,
> delete them, and your script should work.
>
> HTH
> Markus
Very good point. it is indeed UTF-8, but I tried VIM same thing. It is
begin of the file ;/
[Back to original message]
|