Re: [PHP-DEV] memory usage

2003-01-31 Thread Adam Maccabee Trachtenberg
On 31 Jan 2003, Walt Boring wrote: Is there a way for me to log the peak memory usage for a php script for php 4.3.0 ? If PHP is built with the --enable-memory-limit configuration option, it stores the peak memory usage of each request in a note called mod_php_memory_usage. Add the memory

Re: [PHP-DEV] memory usage

2003-01-31 Thread Adam Maccabee Trachtenberg
On Fri, 31 Jan 2003, Adam Maccabee Trachtenberg wrote: If PHP is built with the --enable-memory-limit configuration option, it stores the peak memory usage of each request in a note called mod_php_memory_usage. Add the memory usage information to a LogFormat with: %{mod_php_memory_usage}n

Re: [PHP-DEV] CGI and CLI (compromise proposal)

2002-12-19 Thread Adam Maccabee Trachtenberg
I'm 95% that PEAR works with cgi, but we should check with Stig to make sure it doesn't assume that cli will always be installed. Since pear and cli were both going live with 4.3 they may be coupled. -adam On Thu, 19 Dec 2002, Andrei Zmievski wrote: This gets my complete support. Let's go

[PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/gd gd.c php_gd.h

2002-12-11 Thread Adam Maccabee Trachtenberg
This patch, or at least this part: -#ifdef HAVE_GD_XPM +#if defined(HAVE_GD_XPM) defined(HAVE_GD_BUNDLED) Needs to be merged into the 4.3.0. Something in the build broke my GD support between RC2 and RC3. This fixes it. -adam On Wed, 11 Dec 2002, Ilia Alshanetsky wrote: iliaa Wed

Re: [PHP-DEV] [PATCH] ereg to pcre conversion

2002-10-31 Thread Adam Maccabee Trachtenberg
So you're planning on converting POSIX regexen to PCRE so people don't need to worry about PCRE metacharacters that are POSIX literals? Seems tricky. (e.g. is \w a backslash and a w or a word character? what about search patterns of 10 instead of 10 they have different meanings in egrep(), you'll

Re: [PHP-DEV] 4.2.3

2002-08-22 Thread Adam Maccabee Trachtenberg
On Thu, 22 Aug 2002, Zeev Suraski wrote: I'll pack 4.2.3RC1 tomorrow morning, so if anybody has any last minute bug fixes to put in, now's the time! Shuffle fix didn't make it: http://bugs.php.net/bug.php?id=18401 -adam -- adam maccabee trachtenberg [EMAIL PROTECTED] -- PHP

RE: [PHP-DEV] PHP 4.3 and PHP 5

2002-08-21 Thread Adam Maccabee Trachtenberg
that with the limited set of extensions, against a specific set of versions of addon libraries on a specific version of that OS, yes, it should be production quality - maybe. -Rasmus On Wed, 21 Aug 2002, Adam Maccabee Trachtenberg wrote: On Wed, 21 Aug 2002, Zeev Suraski wrote: I think

[PHP-DEV] Sort doesn't reindex all arrays (Bug #12572)

2002-08-17 Thread Adam Maccabee Trachtenberg
? Thanks. -adam -- adam maccabee trachtenberg [EMAIL PROTECTED] -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Re: #18401 [Opn-Ana]: shuffle() broken (fwd)

2002-08-16 Thread Adam Maccabee Trachtenberg
% yasuo_shuffle 123: 14755: 0.148% 132: 18427: 0.184% 213: 18554: 0.186% 231: 18566: 0.186% 312: 14790: 0.148% 321: 14908: 0.149% -adam -- adam maccabee trachtenberg [EMAIL PROTECTED] -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Re: [PHP-CVS] cvs: php4 /main main.c php.h php_globals.h

2002-08-09 Thread Adam Maccabee Trachtenberg
(function.fopen, file_source, file_destination TSRMLS_CC, EWHATEVER, Desc.); -adam -- adam maccabee trachtenberg [EMAIL PROTECTED] -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Mac 8.6 Web Server with PHP

2002-07-29 Thread Adam Maccabee Trachtenberg
On Thu, 30 Aug 1956, J Abbott wrote: anyone know of a mac 8.6 compatible web server with PHP capibility? http://www.tenon.com/products/webten/ It costs $495, however. I don't know of any free versions of PHP for MacOS X. -adam -- adam maccabee trachtenberg [EMAIL PROTECTED] -- PHP

Re: [PHP-DEV] PHP, Java integration failed: Red Hat 7.1, JDK 1.4,Apache 1.3x

2002-06-21 Thread Adam Maccabee Trachtenberg
William -- I've also spend a considerable amount of time trying to get this to work on Redhat 7.2 (and maybe 7.1). I did a lot of coaxing and reconfigurations. Best I can say, it doesn't work with JDK 1.4. Once I tried 1.3.x, everything went fine. My guess is that something changed in the

Re: [PHP-DEV] configure broken: Iconv detection still not right...

2002-03-19 Thread Adam Maccabee Trachtenberg
looks totally bogus to me, and it looks like there is a missing ) after pthread* --Wez. -- adam maccabee trachtenberg [EMAIL PROTECTED] -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Bug #12748 Updated: changing allow_url_fopen fromoff to on crashes fopen()

2002-02-04 Thread Adam Maccabee Trachtenberg
. -adam -- adam maccabee trachtenberg [EMAIL PROTECTED] -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Bug #12566 Updated: Cascaded ternaries evaluateincorrectly

2001-08-04 Thread Adam Maccabee Trachtenberg
TRUE ? 'one' : TRUE ? 'two' : 'unknown'; = two --- echo TRUE ? 'one' : FALSE ? 'two' : 'unknown'; = two --- This definitely is a bug, and IMO a serious one. A parse error would be acceptable IMO (then use ( and )), but this isn't. Previous Comments: -- adam maccabee trachtenberg [EMAIL

Re: [PHP-DEV] Bug #12566 Updated: Cascaded ternaries evaluateincorrectly

2001-08-04 Thread Adam Maccabee Trachtenberg
://marc.theaimsgroup.com/?l=php-devm=97896924723440w=4 and the follow ups. -adam -- adam maccabee trachtenberg [EMAIL PROTECTED] -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators