On Mon, December 4, 2006 10:43 am, M.Ozan Hazer wrote:
> [04-Dec-2006 18:21:56] PHP Warning:  Unknown: The session id contains
> illegal characters, valid characters are a-z, A-Z, 0-9 and '-,' in
> Unknown
> on line 0

Find your session_start() and do this after it:
var_dump(session_id());

If you have sessions turned on in php.ini automatically, just put the
var_dump() at the top of your pages.

Oh, and check if there is a session_name or session_prefix or somesuch
in the php.ini

If you have set that to an invalid value, it would cause this.

-- 
Some people have a "gift" link here.
Know what I want?
I want you to buy a CD from some starving artist.
http://cdbaby.com/browse/from/lynch
Yeah, I get a buck. So?

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to