Re: [PHP-DEV] Re: [PHP-CVS] cvs: php4 /main config.w32.h internal_functions_win32.c

2003-01-16 Thread Sebastian Bergmann
Sebastian Bergmann wrote: > I'm trying to build HEAD + ZendEngine 2 here, but get the > > HEAD does not work with ZendEngine1 anymore > > error. Fixed in CVS. -- Sebastian Bergmann http://sebastian-bergmann.de/ http://phpOpenTracker.de/ Did I help you? Consider a gift:

[PHP-DEV] Re: [PHP-CVS] cvs: php4 /main config.w32.h internal_functions_win32.c

2003-01-16 Thread Sebastian Bergmann
Harald Radi wrote: > phantoThu Jan 16 17:09:58 2003 EDT > > Modified files: > /php4/mainconfig.w32.h internal_functions_win32.c > Log: > move the ZE2 check into internal_functions_win32.c I'm trying to build HEAD + ZendEngine 2 here, but get the HEAD does n

Re: [PHP-DEV] request data filter

2003-01-16 Thread Rasmus Lerdorf
>I cannot agree more. There is only so much you can do outside >the PHP (as I do in mod_security). I've finished the code. I'll run it through its paces here and commit it soon. -Rasmus -- PHP Development Mailing List To unsubscribe, visit: http://www.php.net/un

Re: [PHP-DEV] request data filter

2003-01-16 Thread Ivan Ristic
I suppose I could munge with the apache tables directly in a hook before the data is read by the standard treat_data hook, although for post data I am not sure I have any way to get in there before the ap_get_client_block() call and change what data ap_get_client_block() is going to see. I do

Re: [PHP-DEV] jpeg2000 in php 4.3

2003-01-16 Thread Marcus Börger
At 13:50 16.01.2003, Adam Wright wrote: I've completed a short patch which cleans up the JPEG 2000 raw codestream support ("j2c", though I've renamed it jpeg2000 in the file for clarity) in getimagesize. It also adds JP2 support. I've put a context diff of it against 4.3.x-dev from this morning up

Re: [PHP-DEV] [PATCH] SNMP value retrieval

2003-01-16 Thread Johann Hanne
Hi Harrie, thanks for the reply. I nearly began to believe that it *IS* ignored ;-) Cheers, Jonny <[EMAIL PROTECTED]> On Thu, 16 Jan 2003, Harrie Hazewinkel wrote: > HI, > > Just a notice that I am not ignoring it. > I am looking into it and try to understand it. > > On Tuesday, January 14,

Re: [PHP-DEV] Memory allocation problems

2003-01-16 Thread Marcus Börger
At 11:38 16.01.2003, Edin Kadribasic wrote: I have a script that allocates a lot of memory (huge associative arrays). The problem is that this scripts bails out with fatal error (emalloc unable to allocate 44 bytes) when I hit the limit of physical ram in the machine. Swap never gets used. The mac

Re: [PHP-DEV] 4.3.1 (was: [PHP-CVS] cvs: php4(PHP_4_3) /main SAPI.h)

2003-01-16 Thread Shane Caraveo
As a matter of fact I think it would be good idea to go for 4.3.1 in February because number of bugfixes in PHP_4_3 branch is already significant and since no major new features have been added there the QA process shouldn't take that long either. And I have a pretty bad bug I'm still trying

Re: [PHP-DEV] [PATCH] SNMP value retrieval

2003-01-16 Thread Harrie Hazewinkel
HI, Just a notice that I am not ignoring it. I am looking into it and try to understand it. On Tuesday, January 14, 2003, at 08:19 PM, Johann Hanne wrote: Hi, The patch makes it much easier to parse the returned SNMP values, as they are no longer pre-parsed by the net-snmp library after you

[PHP-DEV] Win32 builds dead?

2003-01-16 Thread Dan Kalowsky
Seem to be dead on building ext/rpc (fresh CVS). ext/rpc/php_rpc.h(45) : error C2061: syntax error : indentifier 'rpc_objects_new' ext/rpc/php_rpc.h(45) : error C2059: syntax error : ';' ext/rpc/php_rpc.h(45) : error C2059: syntax error : 'type' >-

[PHP-DEV] Re: Memory allocation problems

2003-01-16 Thread Greg Beaver
phpDocumentor (http://www.phpdoc.org) has had problems with this as well. PHP often doesn't give a fatal error, but instead segfaults. As of php 4.3.0, we aren't seeing any crashes, but haven't done extensive testing on the cvs, as we are not yet near a full release. Greg "Edin Kadribasic" <[EMA

Re: [PHP-DEV] request data filter

2003-01-16 Thread Zeev Suraski
At 02:52 16/01/2003, Rasmus Lerdorf wrote: In trying to implement a security policy I need to pass all user-supplied data (GET/POST/Cookie) through a filter function which implements this security. This isn't all that hard to implement as an extension through new 4.3 treat_data and post_handler h

Re: [PHP-DEV] request data filter

2003-01-16 Thread Moriyoshi Koizumi
It looks like a mess indeed, and there seems a thought that encoding conversion and variable registration should be separated into two phases. However doing so doesn't make sense because some of multibyte characters contains "[", "]", or "=" and they cannot be handled properly in the ordinary query

Re: [PHP-DEV] jpeg2000 in php 4.3

2003-01-16 Thread Adam Wright
I've completed a short patch which cleans up the JPEG 2000 raw codestream support ("j2c", though I've renamed it jpeg2000 in the file for clarity) in getimagesize. It also adds JP2 support. I've put a context diff of it against 4.3.x-dev from this morning up at... http://www.j2g.org/patches/jpeg20

Re: [PHP-DEV] request data filter

2003-01-16 Thread Maxim Maletsky
Rasmus Lerdorf <[EMAIL PROTECTED]> wrote... : > this would likely have different security policies, but I do think a > general hook is something that would be useful to all of PHP. > > A huge number of web apps today are extremely vulnerable to > cross-site-scripting attacks. Occasionally deve

Re: [PHP-DEV] Re: php4 /ext/standard file.c formatted_print.c

2003-01-16 Thread Harald Radi
"Sascha Schumann" <[EMAIL PROTECTED]> schrieb im Newsbeitrag news:<[EMAIL PROTECTED]>... > > you're propably a bit too optimistic, i can hardly imagine that all existing > > extensions all over the world compile out of the box against ZE2. i guess only > > a handful do this. > > Apparently,

[PHP-DEV] Memory allocation problems

2003-01-16 Thread Edin Kadribasic
I have a script that allocates a lot of memory (huge associative arrays). The problem is that this scripts bails out with fatal error (emalloc unable to allocate 44 bytes) when I hit the limit of physical ram in the machine. Swap never gets used. The machine has 1 GB of ram and 2 GB of swap spa