Re: [PHP-DEV] 5.0.2RC1

2004-09-22 Thread Edin Kadribasic
Andi Gutmans wrote: At 11:43 PM 9/21/2004 +0200, Andrey Hristov wrote: Andi Gutmans wrote: I'd like to roll 5.0.2 tomorrow. Has anyone had a chance to test 5.0.2RC1? Can I go ahead? Ilia, when are you planning on rolling 4.3.9? Andi Wasn't there some rule like that releases are made on thursdays?

Re: [PHP-DEV] realpath() caching

2004-09-22 Thread Christian Schneider
Sara Golemon wrote: realpath_cache_ttl - Time to live for cache entry (default 120 seconds; if set to 0 then doesn't refresh). Ah, didn't grok the TTL at first glance that fairly well negates the need for an explicit flush If the FS layout needs to change all one would have to do is turn

Re: [PHP-DEV] realpath() caching

2004-09-22 Thread Elfyn McBratney
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hello, Btw, cool patch. :-) I'll see if we can start testing this in an experimental ebuild in Gentoo land. On Wednesday 22 Sep 2004 10:52, Christian Schneider wrote: Sara Golemon wrote: realpath_cache_ttl - Time to live for cache entry (default

[PHP-DEV] Why to have owner's uid of the file when WWW-Authenticate header?

2004-09-22 Thread Kamesh Jayachandran
Hi All, I want to know the reason behind the having the uid of the owner of the file shown as a part of realm string the WWW-Authenticate when safe_mode is enabled. With regards Kamesh Jayachandran -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit:

[PHP-DEV] New VM architecture

2004-09-22 Thread Andi Gutmans
Guys, There's no feedback about the new VM architecture and it's hard to maintain the patches as changes are being made to the source base constantly. I will recommit the patches on Monday unless someone has reasonable objections. I reverted the patch so that people had time to review but it

[PHP-DEV] Fwd: [ZEND-ENGINE-CVS] cvs: ZendEngine2 / zend_execute_API.c zend_globals.h

2004-09-22 Thread Andi Gutmans
Do we want this in the core engine? If so, why not create a general solution for multi-threaded systems (I think Apache pre-fork is better off without it due to performance reasons). Anantha, can you please revert this patch until we come to a conclusion? I prefer doing a general implementation

Re: [PHP-DEV] New VM architecture

2004-09-22 Thread Derick Rethans
On Wed, 22 Sep 2004, Andi Gutmans wrote: Guys, There's no feedback about the new VM architecture and it's hard to maintain the patches as changes are being made to the source base constantly. I will recommit the patches on Monday unless someone has reasonable objections. I reverted the

[PHP-DEV] Weird engine problem

2004-09-22 Thread Sebastian Bergmann
For quite a while I have been fighting with what I believe to be a bug in the Zend Engine 2. In PHPUnit2 I have the following code: public function run(PHPUnit2_Framework_Test $test) { // $test-name: string(14) testGetBalance $this-startTest($test); try {

Re: [PHP-DEV] New VM architecture

2004-09-22 Thread Marcus Boerger
Hello Andi, Wednesday, September 22, 2004, 8:17:47 PM, Derick Rethans wrote: On Wed, 22 Sep 2004, Andi Gutmans wrote: Guys, There's no feedback about the new VM architecture and it's hard to maintain the patches as changes are being made to the source base constantly. I will recommit the

Re: [PHP-DEV] Weird engine problem

2004-09-22 Thread Marcus Boerger
Hello Sebastian, Wednesday, September 22, 2004, 9:52:18 PM, you wrote: For quite a while I have been fighting with what I believe to be a bug in the Zend Engine 2. In PHPUnit2 I have the following code: public function run(PHPUnit2_Framework_Test $test) { // $test-name:

Re: [PHP-DEV] Weird engine problem

2004-09-22 Thread Sebastian Bergmann
Sebastian Bergmann wrote: In PHPUnit2 I have the following code: It seems that I have been at slightly the wrong code try { $class = new ReflectionClass($this); var_dump($this); $method = $class-getMethod($this-name); var_dump($this); exit; }