Re: [PHP] Unserialize problem (and or bug)

2007-01-25 Thread Sancar Saran
Hi On Thursday 25 January 2007 02:16, Richard Lynch wrote: On Wed, January 24, 2007 9:17 am, Sancar Saran wrote: After updating company test server to dotdeb 5.2.0 it star to give memory problems (even 32mb session). I tought it was because of suhosin. And I cannot update that server to

[PHP] Unserialize problem (and or bug)

2007-01-24 Thread Sancar Saran
Hi, After updating company test server to dotdeb 5.2.0 it star to give memory problems (even 32mb session). I tought it was because of suhosin. And I cannot update that server to vanilla debian php5 package because it was a sarge so today my company gives me another debian etch (like my home

Re: [PHP] Unserialize problem (and or bug)

2007-01-24 Thread Németh Zoltán
On sze, 2007-01-24 at 17:17 +0200, Sancar Saran wrote: Hi, After updating company test server to dotdeb 5.2.0 it star to give memory problems (even 32mb session). I tought it was because of suhosin. And I cannot update that server to vanilla debian php5 package because it was a sarge so

Re: [PHP] Unserialize problem (and or bug)

2007-01-24 Thread Sancar Saran
Hi, I mean there was no offical php5 package for debian sarge. Dotdeb was not offical. On Wednesday 24 January 2007 17:46, Németh Zoltán wrote: On sze, 2007-01-24 at 17:17 +0200, Sancar Saran wrote: Hi, After updating company test server to dotdeb 5.2.0 it star to give memory problems

Re: [PHP] Unserialize problem (and or bug)

2007-01-24 Thread Jochem Maas
Németh Zoltán wrote: On sze, 2007-01-24 at 17:17 +0200, Sancar Saran wrote: Hi, After updating company test server to dotdeb 5.2.0 it star to give memory problems (even 32mb session). I tought it was because of suhosin. And I cannot update that server to vanilla debian php5 package because

Re: [PHP] Unserialize problem (and or bug)

2007-01-24 Thread Richard Lynch
On Wed, January 24, 2007 9:17 am, Sancar Saran wrote: After updating company test server to dotdeb 5.2.0 it star to give memory problems (even 32mb session). I tought it was because of suhosin. And I cannot update that server to vanilla debian php5 package because it was a sarge so today my

[PHP] unserialize() problem

2005-09-08 Thread Harris Kosmidhs
Hello all. I wrote some php pages running on apache1.3/php4.4.0-1 In the login page I make use of a class where I store the users name and some integers (i.e whether the user ia able to see a certain page) and serialize the class to a session var. When you go to a page I unserialize the session

[PHP] unserialize problem

2005-04-14 Thread Dasmeet Singh
Hi! I am trying to unserialize a serialized array stored in cookie... I am using following code : echo(Welcome to Members Areabr); echo(br$loginbr); $m_l_d=unserialize($login); echo $m_l_d; echo($m_l_d[0], $m_l_d[1], $m_l_d[2]); However the output is: Welcome to Members Area

Re: [PHP] unserialize problem

2005-04-14 Thread Marek Kilimajer
Dasmeet Singh wrote: Hi! I am trying to unserialize a serialized array stored in cookie... I am using following code : echo(Welcome to Members Areabr); echo(br$loginbr); $m_l_d=unserialize($login); echo $m_l_d; echo($m_l_d[0], $m_l_d[1], $m_l_d[2]); However the output is: Welcome to Members Area

Re: [PHP] unserialize problem

2005-04-14 Thread Dasmeet Singh
Marek Kilimajer wrote: Dasmeet Singh wrote: Hi! I am trying to unserialize a serialized array stored in cookie... I am using following code : echo(Welcome to Members Areabr); echo(br$loginbr); $m_l_d=unserialize($login); echo $m_l_d; echo($m_l_d[0], $m_l_d[1], $m_l_d[2]); However the output is: