Re: [PHP] Re: session.gc_maxlifetime

2009-09-24 Thread bdunlap
> it could be ip address changes. interesting thought. As far as I'm aware, PHP session-management doesn't care about source IP, out-of-the-box -- your app would have to be coded to care. Plus I suspect you would have started seeing the problem a long time ago, if changing source IPs were the caus

Re: [PHP] stdout as input

2009-09-24 Thread bdunlap
> echo bob | myScript.php > > In myScript.php, I'm doing: > >  $handle = popen( 'php://stdin', 'r' ); >  echo var_export( $handle, TRUE ) . "\n\n"; What output are you getting from those lines, and what were you expecting? $handle is just a resource, same as if you opened a regular file -- you sti