I have installed uid module in nginx , also have added configs related for uid.
userid on;
userid_name uid;
userid_expires 365d;
userid_p3p 'policyref="/w3c/p3p.xml", CP="CUR ADM OUR NOR STA NID"';
I am successfully getting uid but only after first request.on my first request it just sets uid.I can't access it in php.
I can see
Set-Cookie uid=fwAAAVCl6NEEvCbKAwMEAg==; expires=Sat, 16-Nov-13 07:18:41 GMT; path=/
in my firebug for first request's Response Headers.
And my nginx access log is written with following logs for first request.
127.0.0.1 - - [16/Nov/2012:12:48:41 +0530] "GET /_p.php?=PHPE9568F34-D428-11d2-A769-00AA001ACF42 HTTP/1.1" 200 2536 "http://127.0.0.1/_p.php" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.3) Gecko/20100403 Fedora/3.6.3-4.fc13 Firefox/3.6.3" "-"
127.0.0.1 - - [16/Nov/2012:12:48:41 +0530] "GET /_p.php?=PHPE9568F35-D428-11d2-A769-00AA001ACF42 HTTP/1.1" 200 2158 "http://127.0.0.1/_p.php" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.3) Gecko/20100403 Fedora/3.6.3-4.fc13 Firefox/3.6.3" "-"
127.0.0.1 - - [16/Nov/2012:12:48:44 +0530] "GET /_p.php?=PHPE9568F34-D428-11d2-A769-00AA001ACF42 HTTP/1.1" 200 2536 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.3) Gecko/20100403 Fedora/3.6.3-4.fc13 Firefox/3.6.3" "-"
Can someone tell me how to get uid for my first request in php?