[PHP-DEV] PHP 4 Bug Summary Report

2005-03-21 Thread internals
PHP 4 Bug Database summary - http://bugs.php.net Num Status Summary (791 total including feature requests) ===[*General Issues]== 27372 Verified parse error loading browscap.ini at apache startup (new parser required)

[PHP-DEV] PHP 5 Bug Summary Report

2005-03-21 Thread internals
PHP 5 Bug Database summary - http://bugs.php.net Num Status Summary (337 total including feature requests) ===[*Configuration Issues] 29971 Assigned variables_order behaviour ===[Apache2

Re: [PHP-DEV] PHP 4 Bug Summary Report

2005-03-21 Thread Christopher Kings-Lynne
I hope it's ok that I just closed 3 identical 'I want prepared queries in ext/pgsql' bugs :D Chris internals@lists.php.net wrote: PHP 4 Bug Database summary - http://bugs.php.net -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] [PATCH] 5.0/Zend memset fix

2005-03-21 Thread Joe Orton
Found by Dave Jones grepping for memset(,,0)... only applies to the 5.0 branch: either correct it as below or remove the line completely? Index: zend_execute.c === RCS file: /repository/ZendEngine2/zend_execute.c,v retrieving

RE: [PHP-DEV] [PATCH] Bug #32333 - Unable to perform command line build with Ingres extension

2005-03-21 Thread Croker, Grant
Modified patch applied. No need to patch php_ii.h. --Jani the config.w32 in cvs does not work - running 'cscript /nologo configure.js --with-ingres' (after running buildconf) generates the following: Checking for iiapi.h ... C:\Ingres[GC]\ingres\files Checking for library

Re: [PHP-DEV] [PATCH] 5.0/Zend memset fix

2005-03-21 Thread Andi Gutmans
Commited. Thanks. At 09:36 AM 3/21/2005 +, Joe Orton wrote: Found by Dave Jones grepping for memset(,,0)... only applies to the 5.0 branch: either correct it as below or remove the line completely? Index: zend_execute.c === RCS

Re: [PHP-DEV] extension naming

2005-03-21 Thread Stephan Schmidt
Hi, Lukas Smith schrieb: Also while xmlrpci is only a pecl ext for now is seems like it registers a class called xmlrpc (REGISTER_XMLRPCI_CLASS(xmlrpc, rpc, NULL, 0)). I dont think this is a good idea either. IIRC XMLRPCi strives to be backward compatible with ext/xmlrpc... But I agree that the

[PHP-DEV] Re: implode() speedup in PHP4

2005-03-21 Thread Alexander Valyalkin
After applying the change to ext/standard/string.c in PHP4 the following Test failed: Bug #4 (implode changes object references in array) [ext/standard/tests/strings/bug4.phpt] Regards, Christian Stadler I understood my fault. I didn't notice condition if (!(*ppzv)-is_ref) { } in

[PHP-DEV] crc32, md5 sha1 functions

2005-03-21 Thread Alexander Valyalkin
crc32, md5 and sha1 functions, implemented in PHP, are widely used for computing fingerprint of any data. But current implementation has not very good limitation - there is no way to get/set current state vector of these functions. So, we have to pass whole amount of data as argument of these

[PHP-DEV] Re: extension naming

2005-03-21 Thread Greg Beaver
Lukas Smith wrote: Hi, I guess xmlprci is following the mysqli example. I am not sure if this is a good idea to have new BC breaking versions of extensions append letters like i (aka improved) to solve the namespace issue. So I would like to bring this topic up for discussion on this list

[PHP-DEV] Re: crc32, md5 sha1 functions

2005-03-21 Thread Sara Golemon
crc32, md5 and sha1 functions, implemented in PHP, are widely used for computing fingerprint of any data. But current implementation has not very good limitation - there is no way to get/set current state vector of these functions. So, we have to pass whole amount of data as argument of these

[PHP-DEV] PHP auto global variables inside C extension

2005-03-21 Thread Arjun Jain
Hi everyone, I was wondering if there was any way in which the PHP auto global variables could be used inside the C extension code? Where does php store all the global variables? Well what I am trying to do is put the uploaded file in a custom database. But for that I require all the four

Re: [PHP-DEV] PHP auto global variables inside C extension

2005-03-21 Thread Kamesh Jayachandran
SG(rfc1867_uploaded_files) will have a list of filenames uploaded. With regards Kamesh Jayachandran On Tue, 22 Mar 2005 12:32:44 +0530, Arjun Jain [EMAIL PROTECTED] said: Hi everyone, I was wondering if there was any way in which the PHP auto global variables could be used inside the C