Re: [PHP-CVS] cvs: php-src / NEWS /main SAPI.c SAPI.h /sapi/apache mod_php5.c /sapi/apache2filter sapi_apache2.c /sapi/apache2handler sapi_apache2.c

2004-08-11 Thread Rasmus Lerdorf
Ok, fixed that. Are you going to commit your rp_cache stuff soon? -Rasmus -- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-CVS] cvs: php-src / NEWS /main SAPI.c SAPI.h /sapi/apache mod_php5.c /sapi/apache2filter sapi_apache2.c /sapi/apache2handler sapi_apache2.c

2004-08-11 Thread Andi Gutmans
It's not ready to commit. Needs some improvements (such as hooking into INI directives). I will try and find time to work on it next week. No rush because it'll still take some time for 5.1. Andi At 11:19 PM 8/10/2004 -0700, Rasmus Lerdorf wrote: Ok, fixed that. Are you going to commit your

[PHP-CVS] cvs: php-src / NEWS /main SAPI.c SAPI.h /sapi/apache mod_php5.c /sapi/apache2filter sapi_apache2.c /sapi/apache2handler sapi_apache2.c

2004-08-10 Thread Rasmus Lerdorf
rasmus Tue Aug 10 13:40:00 2004 EDT Modified files: /php-srcNEWS /php-src/main SAPI.c SAPI.h /php-src/sapi/apachemod_php5.c /php-src/sapi/apache2filter sapi_apache2.c /php-src/sapi/apache2handlersapi_apache2.c Log:

Re: [PHP-CVS] cvs: php-src / NEWS /main SAPI.c SAPI.h /sapi/apache mod_php5.c /sapi/apache2filter sapi_apache2.c /sapi/apache2handler sapi_apache2.c

2004-08-10 Thread Andi Gutmans
Haven't run the code but it seems that if sapi_get_request_time() is not defined then you will return the same time() for each consecutive request (i.e. you don't reset it each request). It's probably better to move the time(0) initialization to sapi_globals ctor and/or dtor. Andi At 05:40 PM

Re: [PHP-CVS] cvs: php-src / NEWS /main SAPI.c SAPI.h /sapi/apache mod_php5.c /sapi/apache2filter sapi_apache2.c /sapi/apache2handler sapi_apache2.c

2004-08-10 Thread Rasmus Lerdorf
On Tue, 10 Aug 2004, Andi Gutmans wrote: Haven't run the code but it seems that if sapi_get_request_time() is not defined then you will return the same time() for each consecutive request (i.e. you don't reset it each request). It's probably better to move the time(0) initialization to

Re: [PHP-CVS] cvs: php-src / NEWS /main SAPI.c SAPI.h /sapi/apache mod_php5.c /sapi/apache2filter sapi_apache2.c /sapi/apache2handler sapi_apache2.c

2004-08-10 Thread Andi Gutmans
At 09:52 PM 8/10/2004 -0700, Rasmus Lerdorf wrote: On Tue, 10 Aug 2004, Andi Gutmans wrote: Haven't run the code but it seems that if sapi_get_request_time() is not defined then you will return the same time() for each consecutive request (i.e. you don't reset it each request). It's probably