This is a discussion on Strange SID... within the Apache Web Server forums, part of the Web Server and Related Forums category; Hi, I'm using Apache-PHP-MySQL. I'm not new to that stuff, but there is always something new ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Hi,
I'm using Apache-PHP-MySQL. I'm not new to that stuff, but there is always something new in it... Here is the latest : I've set up my server, well configured. I tried to run my site... and got no session variables in PHP. So I tried to config PHP, but in vain... Here's my little test script : session_start(); if (!isset($_SESSION["count"])) $_SESSION["count"] = 1; else $_SESSION["count"] ++; echo $_SESSION["count"]; Everytime I refresh this page, Apache log file (access.log) reports : 127.0.0.1 - - [29/Apr/2005:17:35:36 +0200] "GET /test.php HTTP/1.1" 200 41765 127.0.0.1 - - [29/Apr/2005:17:35:37 +0200] "GET /test.php?=PHPE9568F35-D428-11d2-A769-00AA001ACF42 HTTP/1.1" 200 4459 127.0.0.1 - - [29/Apr/2005:17:35:37 +0200] "GET /test.php?=PHPE9568F34-D428-11d2-A769-00AA001ACF42 HTTP/1.1" 200 2974 Any idea what this is (PHPE....). It's not my session ID, so what ? My kingdom for a good tip. -- @+ |