|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-03-16 17:37 UTC] sas@php.net
[2001-03-16 17:46 UTC] sniper@php.net
[2001-03-19 14:05 UTC] aaron dot lake at kvaerner dot com
[2001-03-19 14:12 UTC] sniper@php.net
[2001-03-19 14:13 UTC] aaron dot lake at kvaerner dot com
[2001-03-19 14:16 UTC] aaron dot lake at kvaerner dot com
[2001-03-19 14:24 UTC] aaron dot lake at kvaerner dot com
[2001-03-19 14:38 UTC] sniper@php.net
[2001-03-19 14:39 UTC] aaron dot lake at kvaerner dot com
[2001-03-19 14:43 UTC] aaron dot lake at kvaerner dot com
[2001-03-19 14:50 UTC] sniper@php.net
[2001-04-19 09:28 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 07:00:01 2025 UTC |
Problem: For some reason PHP adds PHPSESSID to $HTTP_POST_VARS At login, I use: session_start(): $sid = session_id(); session_register("sid"); etc..... 2 pages into the session the var PHPSESSID appears as the first element in the post array. My app has been been behaving until I started playing with gc_probability in php.ini. My identical dev website with identical code does not reproduce this problem. Config INFO: Compile Directives: './configure' '--prefix=/../../php_prod' '--with-config_file_path=/../../php_prod/lib' '--with-oci8' '--with-apache=/../../apache_prod' '--enable-track-vars' '--enable-trans-sid' '--enable-ftp' php.ini session config: [Session] session.save_handler = files ; session.save_path=/usr/local/session ; session.use_cookies = 0 ; session.name = PHPSESSID ; session.auto_start = 0 ; session.cookie_lifetime=0 ; session.cookie_path = / session.serialize_handler = php ; session.gc_probability = 1 ; session.gc_maxlifetime = 1800 ; session.referer_check = ; session.entropy_length = 0 ; session.entropy_file = ; session.entropy_length = 16 ; session.entropy_file = /dev/urandom session.cache_limiter= nocache ; ; session.cache_expire = 180 ; session.use_trans_sid = 1 ; [EOF]