Re: [PHP-DEV] php 4.3.0 ext/oci8 -- OCI_SHARED patch

2003-01-09 Thread Thies C. Arntzen
On Tue, Jan 07, 2003 at 11:46:16AM -0500, Levi Dixon wrote: I have tested it and it works for me. As far as thread safety, all of OCI could suffer from thread safety problems, not just this feature. If we want ext/oci8 to be thread safe, we should really pass the OCI_THREADED flag into

Re: [PHP-DEV] php 4.3.0 ext/oci8 -- OCI_SHARED patch

2003-01-07 Thread Thies C. Arntzen
On Mon, Jan 06, 2003 at 01:42:15PM -0500, Levi Dixon wrote: For review: I've modified the following files to allow for use of OCI_SHARED in ext/oci8 module if OCI8_VERSION = 8.1, which will provide memory savings by sharing connection and statement data (refer to

Re: [PHP-DEV] php 4.3.0 ext/oci8 -- OCI_SHARED patch

2003-01-07 Thread Maxim Maletsky
Thies C. Arntzen [EMAIL PROTECTED] wrote... : I've modified the following files to allow for use of OCI_SHARED in ext/oci8 module if OCI8_VERSION = 8.1, which will provide memory savings by sharing connection and statement data (refer to

RE: [PHP-DEV] php 4.3.0 ext/oci8 -- OCI_SHARED patch

2003-01-07 Thread Levi Dixon
I've modified the following files to allow for use of OCI_SHARED in ext/oci8 module if OCI8_VERSION = 8.1, which will provide memory savings by sharing connection and statement data (refer to http://www.csee.umbc.edu/help/oracle8/server.815/a67846/basics.htm; search for Shared

[PHP-DEV] php 4.3.0 ext/oci8 -- OCI_SHARED patch

2003-01-06 Thread Levi Dixon
For review: I've modified the following files to allow for use of OCI_SHARED in ext/oci8 module if OCI8_VERSION = 8.1, which will provide memory savings by sharing connection and statement data (refer to http://www.csee.umbc.edu/help/oracle8/server.815/a67846/basics.htm; search for Shared Data

[PHP-DEV] PHP 4.3.0 (Win32, zip) not bundled with PEAR?

2002-12-31 Thread Tobias Schlitt
Hi PHP-lovers! Happy new year! I just downloaded the PHP 4.3.0 binaries (Win32, zip) and saw, that no PEAR related stuff is included... is that right or is there a mistake in it? I thought, PEAR would be integral part of PHP since some versions... Regards! Toby --

[PHP-DEV] PHP 4.3.0 released

2002-12-27 Thread Andrei Zmievski
The PHP developers are pleased to announce the immediate availability of PHP 4.3.0, the latest and greatest version of this extremely popular and widely used scripting language. This release contains a multitude of changes, bug fixes and improvements over the previous one, PHP 4.2.3. It further

Re: [PHP-DEV] PHP 4.3.0 released

2002-12-27 Thread Sander Steffann
Hi All, There is a weird line in here too: * PHP Manual: Using PHP from the command line http://www.php.net/manual/en/features.commandline.php It's this one: By default when executing make, both the CGI and CLI are built and placed as sapi/cgi/php and sapi/cgi/php respectfully

RE: [PHP-DEV] PHP 4.3.0 released

2002-12-27 Thread Mike Robinson
Sander Steffann writes: Hi All, There is a weird line in here too: * PHP Manual: Using PHP from the command line http://www.php.net/manual/en/features.commandline.php It's this one: By default when executing make, both the CGI and CLI are built and placed as

Re: [PHP-DEV] PHP 4.3.0 released

2002-12-27 Thread Philip Olson
On Sat, 28 Dec 2002, Sander Steffann wrote: Hi All, There is a weird line in here too: * PHP Manual: Using PHP from the command line http://www.php.net/manual/en/features.commandline.php It's this one: By default when executing make, both the CGI and CLI are built and

Re: [PHP-DEV] PHP 4.3.0 released

2002-12-27 Thread Ari Pollak
On Fri, Dec 27, 2002 at 07:41:50PM -0500, Mike Robinson wrote: Shouldn't that be 'sapi/cgi/php and sapi/cli/php respectively'? The second path is wrong, and respectfully should be respectively. -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit:

RE: [PHP-DEV] PHP 4.3.0 released

2002-12-27 Thread Mike Robinson
Ari Pollak wrote: On Fri, Dec 27, 2002 at 07:41:50PM -0500, Mike Robinson wrote: Shouldn't that be 'sapi/cgi/php and sapi/cli/php respectively'? The second path is wrong, and respectfully should be respectively. Duh. I guess I should lay off the egg nog eh? :P

[PHP-DEV] PHP 4.3.0

2002-11-08 Thread Andi Gutmans
Hey, What's the schedule for 4.3? It seems to be lingering. That said I'd like to resolve the bison issue before we release it (i.e. make sure that ZE1 isn't bitten by versions 1.28). Andi -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit:

Re: [PHP-DEV] PHP 4.3.0

2002-11-08 Thread Andrei Zmievski
On Sat, 09 Nov 2002, Andi Gutmans wrote: Hey, What's the schedule for 4.3? It seems to be lingering. That said I'd like to resolve the bison issue before we release it (i.e. make sure that ZE1 isn't bitten by versions 1.28). It's not lingering. We just have to be more careful since it's

Re: [PHP-DEV] PHP 4.3.0-dev-zend2-alpha segfaulting

2002-06-15 Thread Andi Gutmans
Hi, Thanks for the good bug report. I have fixed this problem in the CVS. Andi At 12:39 PM 6/14/2002 +0200, Hakan Kuecuekyilmaz wrote: Hi, following script segfaults at in doubleloop 10/22 Segmentation fault ?php class benchmark { var $index; function benchmark($num) { for

[PHP-DEV] PHP 4.3.0-dev-zend2-alpha segfaulting

2002-06-14 Thread Hakan Kuecuekyilmaz
Hi, following script segfaults at in doubleloop 10/22 Segmentation fault ?php class benchmark { var $index; function benchmark($num) { for ($i = 0; $i $num; $i++) { $this-index = $i; } } } for ($i = 0; $i 100; $i++) { for ($j = 0; $j 100; $j++) {