[PHP-DEV] RE: PHP profiling results under 2.0.37 Re: Performance of Apache 2.0 Filter

2002-06-09 Thread Sander Striker
> From: Andi Gutmans [mailto:[EMAIL PROTECTED]] > Sent: 08 June 2002 13:59 > On Fri, 7 Jun 2002, Ryan Bloom wrote: > >> On Fri, 7 Jun 2002, Brian Pane wrote: >> >>> On Fri, 2002-06-07 at 01:14, Sascha Schumann wrote: > The function php_apache_sapi_ub_write() is inserting a flush bucket

[PHP-DEV] LinuxTag Pictures

2002-06-09 Thread Sebastian Bergmann
Hey, currently only http://www.photoalbum.nohn.net/Linuxtag2002 is listed on www.php.net. More pictures are available here http://www.sebastian-bergmann.de/gallery/linuxtag2002/ http://www.christopher-kunz.de/gallery/lt02 http://photos.l33t-h4x0r.de/LinuxTag%202002/ h

Re: [PHP-DEV] Re: PHP profiling results under 2.0.37 Re: Performanceof Apache 2.0 Filter

2002-06-09 Thread Brian Pane
Andi Gutmans wrote: > At 12:53 PM 6/9/2002 -0700, Aaron Bannert wrote: > >> On Sun, Jun 09, 2002 at 03:09:24AM +0300, Zeev Suraski wrote: >> > Hmm, but doesn't that mean that the largest contiguous block this >> heap will >> > be able to provide is 8KB, then? >> >> 8K is just the minimum chunk s

[PHP-DEV] Re: [PHP-CVS] cvs: php4 / NEWS /ext/standard array.c

2002-06-09 Thread Sebastian Bergmann
Andrei Zmievski wrote: > Log: > Fix bug #7045: shuffle() now provides consistent distribution of values > in the array. C:\home\php\php4\ext\standard\array.c(1446) : error C2082: Neudefinition des for malen Parameters "tsrm_ls" C:\home\php\php4\ext\standard\array.c(2949) : error C2065: 'array_dat

[PHP-DEV] CVS Account Request: emil

2002-06-09 Thread emil santos
(phpdoc) Found the docs outdated; heard no one was working on them. -- PHP Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] using HTTP-PUT-Method problem

2002-06-09 Thread Dan Hardiker
Please send this question to the php-general mailing list. This list is specifically about PHP itself rather than using it. > does someone have an example of a _working_ PUT-script? > i was trying $PHP_PUT_FILENAME and even trying to dump all the GLOBALS > but i couldnt find a filename which poin

Re: [PHP-DEV] Re: [Zend Engine 2] Re: [PHP-DEV] Re: [Zend Engine 2] PHP in the future

2002-06-09 Thread Dan Hardiker
> On Fri, Jun 07, 2002 at 09:27:13AM -0500, Jason T. Greene wrote: >> IMO, one of the big reasons for having a powerful OO mode, and >> continually evolving php to have a bigger target than just "a web >> programming language", is code re-usability. > > You do not need OO for this. OO just helps y

[PHP-DEV] using HTTP-PUT-Method problem

2002-06-09 Thread Wolfram Kriesing
does someone have an example of a _working_ PUT-script? i was trying $PHP_PUT_FILENAME and even trying to dump all the GLOBALS but i couldnt find a filename which points to the PUT'-filename how does it work? obviously not as it is in the manual :-( copy( $PHP_PUT_FILENAME , $PATH_TRANSLATE

Re: [PHP-DEV] REPOST: Class Autoloading [PATCH]

2002-06-09 Thread Ivan Ristic
> I believe this has been discussed in the past and not ack'd, please read > the php-dev archives... I tried and I tried but I couldn't find a discussion on anything similar on the mailing list. The code I sent is *already* in use, and has been in use for some time now. Take a look at t

[PHP-DEV] Re: [Zend Engine 2] Re: [PHP-DEV] Re: [Zend Engine 2] PHP in the future

2002-06-09 Thread Kristian Koehntopp
On Fri, Jun 07, 2002 at 09:27:13AM -0500, Jason T. Greene wrote: > IMO, one of the big reasons for having a powerful OO mode, and > continually evolving php to have a bigger target than just "a web > programming language", is code re-usability. You do not need OO for this. OO just helps you to ma

[PHP-DEV] BerkeleyDB4 support?

2002-06-09 Thread R Blake
hi, is BerkelyDB4 supported in 5.8.0RC1? i note that -with-db has been deprecated, and that only -with-db2, -with-db3 and -with-dbm remain .. thanks for any comments/pointers. richard -- R Blake blakers mac.com http://homepage.mac.com/blakers ---

Re: [PHP-DEV] Re: PHP profiling results under 2.0.37 Re: Performance of Apache 2.0 Filter

2002-06-09 Thread Andi Gutmans
At 12:53 PM 6/9/2002 -0700, Aaron Bannert wrote: >On Sun, Jun 09, 2002 at 03:09:24AM +0300, Zeev Suraski wrote: > > Hmm, but doesn't that mean that the largest contiguous block this heap > will > > be able to provide is 8KB, then? > >8K is just the minimum chunk size, there is no absolute maximum

Re: [PHP-DEV] Re: PHP profiling results under 2.0.37 Re: Performance of Apache 2.0 Filter

2002-06-09 Thread Aaron Bannert
On Sun, Jun 09, 2002 at 03:09:24AM +0300, Zeev Suraski wrote: > Hmm, but doesn't that mean that the largest contiguous block this heap will > be able to provide is 8KB, then? 8K is just the minimum chunk size, there is no absolute maximum. > > * There's a two-layer structure to the heaps: > >

[PHP-DEV] Re: Bug #17660 Updated: Outdated Documentation

2002-06-09 Thread Markus Fischer
On Sun, Jun 09, 2002 at 07:41:30PM -, [EMAIL PROTECTED] wrote : > ID: 17660 > Updated by: [EMAIL PROTECTED] > Reported By: [EMAIL PROTECTED] > Status: Open > Bug Type: Documentation problem > Operating System: Windows 95 > PHP Version: 4.

Re: [PHP-DEV] REPOST: Class Autoloading [PATCH]

2002-06-09 Thread Zeev Suraski
I believe this has been discussed in the past and not ack'd, please read the php-dev archives... Zeev At 10:19 PM 6/9/2002, Ivan Ristic wrote: >Several days ago I posted a simple patch to the Zend Engine, >to support automatic class loading. The code is almost completely >copied from the existi

[PHP-DEV] REPOST: Class Autoloading [PATCH]

2002-06-09 Thread Ivan Ristic
Several days ago I posted a simple patch to the Zend Engine, to support automatic class loading. The code is almost completely copied from the existing auto-loading mechanism for the unserialize function. Basically, a userland function is called whenever a non-defined class is called. The function

Re: [PHP-DEV] PECL != Siberia

2002-06-09 Thread Shane Caraveo
Hmm, what is happening for win32? Stig S. Bakken wrote: > With the latest PEAR installer (version 0.90), PECL extensions are now > built and installed during "pear install/upgrade" on Unix systems. > > First: upgrade PEAR to 0.9 with "pear upgrade PEAR". > > If you have the xmms libraries a

Re: [PHP-DEV] PECL != Siberia

2002-06-09 Thread Markus Fischer
On Sun, Jun 09, 2002 at 08:39:59PM +0200, Tomas V.V.Cox wrote : > Tell me if something doesn't work correctly now. No errors now, great! - Markus -- GnuPG Key: http://guru.josefine.at/~mfischer/C2272BD0.asc -- PHP Development Mailing List To unsubscribe, vi

Re: [PHP-DEV] PECL != Siberia

2002-06-09 Thread Tomas V.V.Cox
Markus Fischer wrote: > > On Sun, Jun 09, 2002 at 06:35:44PM +0200, Tomas V.V.Cox wrote : > > Jani Taskinen wrote: > > > > > > # make install > > > > > > /usr/src/web/php/php4/sapi/cli/php /usr/src/web/php/php4/pear/install-pear.php >/usr/src/web/php/php4/pear/package-*.xml > > > /usr/src/web/ph

Re: [PHP-DEV] PECL != Siberia

2002-06-09 Thread Markus Fischer
On Sun, Jun 09, 2002 at 06:35:44PM +0200, Tomas V.V.Cox wrote : > Jani Taskinen wrote: > > > > # make install > > > > /usr/src/web/php/php4/sapi/cli/php /usr/src/web/php/php4/pear/install-pear.php >/usr/src/web/php/php4/pear/package-*.xml > > /usr/src/web/php/php4/pear/PEAR/Frontend/CLI.php(71

Re: [PHP-DEV] PECL != Siberia

2002-06-09 Thread Tomas V.V.Cox
Jani Taskinen wrote: > > # make install > > /usr/src/web/php/php4/sapi/cli/php /usr/src/web/php/php4/pear/install-pear.php >/usr/src/web/php/php4/pear/package-*.xml > /usr/src/web/php/php4/pear/PEAR/Frontend/CLI.php(71) : Fatal error - >Frontend::displayLine deprecated > > . > . > Installing

Re: [PHP-DEV] PECL != Siberia

2002-06-09 Thread Jani Taskinen
# make install /usr/src/web/php/php4/sapi/cli/php /usr/src/web/php/php4/pear/install-pear.php /usr/src/web/php/php4/pear/package-*.xml /usr/src/web/php/php4/pear/PEAR/Frontend/CLI.php(71) : Fatal error - Frontend::displayLine deprecated . . Installing program: pear cp: pear/scripts/pear: No su

[PHP-DEV] PECL != Siberia

2002-06-09 Thread Stig S. Bakken
With the latest PEAR installer (version 0.90), PECL extensions are now built and installed during "pear install/upgrade" on Unix systems. First: upgrade PEAR to 0.9 with "pear upgrade PEAR". If you have the xmms libraries and php_gtk installed, you can see it in action by doing simply "pear inst

Re: [PHP-DEV] Snapshots not build correctly..

2002-06-09 Thread Jani Taskinen
On Thu, 6 Jun 2002, Jani Taskinen wrote: >On 6 Jun 2002, Jim Winstead wrote: > >>Andi Gutmans <[EMAIL PROTECTED]> wrote: >>> At 09:25 PM 6/5/2002 +0300, Jani Taskinen wrote: On Wed, 5 Jun 2002, Andi Gutmans wrote: >At 11:35 PM 6/4/2002 +0300, Jani Taskinen wrote: > >> T

[PHP-DEV] populating list menus with mysql and for statements

2002-06-09 Thread electroteque
hi i am populating a list menu with mysql , i would like to find a way to populate a form with more than one of the same list menus in a for loop fetchRow(DB_FETCHMODE_ASSOC)) { $typeID=$sample["typeID"]; $description=$sample["description"]; $sample_type[$sample['typeID