Re: [PHP] PHP session variables

2012-08-14 Thread tamouse mailing lists
On Aug 14, 2012 1:36 AM, "tamouse mailing lists" wrote: > > > On Aug 13, 2012 8:01 AM, "Robert Cummings" wrote: > > > > On 12-08-10 04:42 PM, Tedd Sperling wrote: > >> > >> On Aug 10, 2012, at 1:21 PM, Ege Sertçetin wrote: > >> > >>> Hi. My question will maybe out of topic, I'm sorry. > >>> How

Re: [PHP] Reading class variable value always returns NULL

2012-08-14 Thread Reto Kaiser
Hey, We have: error_reporting((E_ALL | E_STRICT) & ~(E_NOTICE | E_USER_NOTICE)); Displaying errors is disabled: display_errors = Off We have a custom error handler which logs all errors to a file. In this file we receive byeffect errors, like that the second argument to "array_key_exists" should

Re: [PHP] Reading class variable value always returns NULL

2012-08-14 Thread Jim Lucas
On 08/12/2012 05:32 AM, Reto Kaiser wrote: Hi, So I have this strange situation where I assign a classvariable a value, but when I read the value it is NULL. Does anyone have an idea what could cause this, or how to further debug? Thanks, Reto What is your error reporting set to? Do you

Re: [PHP] Reading class variable value always returns NULL

2012-08-14 Thread Robert Williams
I'm not real clear on what's happening. Are you saying that if you assign values to the protected class members, and then immediately read them, that they're null? So, there's code something like this: class Foo { public function Something() { $this->foo = 1; //shows null instead o

Re: [PHP] Reading class variable value always returns NULL

2012-08-14 Thread Reto Kaiser
Hi, We have since deployed another webserver machine and observe the exact same behavior there. So it is not a hardware problem. We have also disabled various php modules, but this didn't help either. Any debug suggestions are welcome! :) Reto On Tue, Aug 14, 2012 at 10:40 AM, Reto Kaiser wro

Re: [PHP] PHP session variables

2012-08-14 Thread Robert Cummings
On 12-08-14 10:41 AM, Tedd Sperling wrote: On Aug 13, 2012, at 10:59 AM, Robert Cummings wrote: On 12-08-10 04:42 PM, Tedd Sperling wrote: On Aug 10, 2012, at 1:21 PM, Ege Sertçetin wrote: Hi. My question will maybe out of topic, I'm sorry. How can you know that one way will be much slower

Re: [PHP] PHP APC 3.1.11

2012-08-14 Thread Daniel Brown
On Tue, Aug 14, 2012 at 7:14 AM, Vedran Rodic wrote: > Hi, > > PHP APC 3.1.11 is marked beta, however it seems to contain important bugfixes. > > Is it safe to deploy on production (we're currently using 3.1.9)? Or > it is better to wait for 'stable' release. When is next 'stable' > expected?

Re: [PHP] about unlink

2012-08-14 Thread Daniel Brown
On Tue, Aug 14, 2012 at 4:22 AM, Tolga wrote: > hi, i have a very annoying problem with unlink() > i use win7 and wamp server (apache 2.2.22 & php 5.4.3) > when i try to use unlink: > > SCREAM: Error suppression ignored for > Warning: unlink(aaa/bbb.ccc): Permission denied in C:\wamp\www\ddd\index

Re: [PHP] PHP session variables

2012-08-14 Thread Tedd Sperling
On Aug 13, 2012, at 10:59 AM, Robert Cummings wrote: > On 12-08-10 04:42 PM, Tedd Sperling wrote: >> On Aug 10, 2012, at 1:21 PM, Ege Sertçetin wrote: >> >>> Hi. My question will maybe out of topic, I'm sorry. >>> How can you know that one way will be much slower than other one? I mean, >>> ho

[PHP] PHP APC 3.1.11

2012-08-14 Thread Vedran Rodic
Hi, PHP APC 3.1.11 is marked beta, however it seems to contain important bugfixes. Is it safe to deploy on production (we're currently using 3.1.9)? Or it is better to wait for 'stable' release. When is next 'stable' expected? Vedran Rodic -- PHP General Mailing List (http://www.php.net/) To u

Re: [PHP] Reading class variable value always returns NULL

2012-08-14 Thread Reto Kaiser
Hi, Thanks for your input Robert and Volmar! I have googled again with "instance variable" instead of "class variable" - but have not found any similar reports. I'm pretty sure those are the same objects. The application usually runs alright. We only see the instance variables becoming NULL since

Re: [PHP] PHP session variables

2012-08-14 Thread tamouse mailing lists
On Aug 13, 2012 8:01 AM, "Robert Cummings" wrote: > > On 12-08-10 04:42 PM, Tedd Sperling wrote: >> >> On Aug 10, 2012, at 1:21 PM, Ege Sertçetin wrote: >> >>> Hi. My question will maybe out of topic, I'm sorry. >>> How can you know that one way will be much slower than other one? I mean, how can