[PHP-DEV] Embedded libmysql update

2002-06-14 Thread Zak Greant
Hello All, Upgrading the embedded libmysql is taking me far too long. I have asked for the core MySQL devs to take care of it. A rather tired and frustrated, --zak -- PHP Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] ext/xslt is not working in php 4.3-dev

2002-06-14 Thread Christian Stocker
Hi ext/xslt seems not to work anymore. I get Warning: Sablotron error on line 1: XML parser error 3: no element found in /usr/local/apache/htdocs/test/sab.php on line 21 or Warning: Sablotron error on line 1: unknown encoding '' in /usr/local/apache/htdocs/test/sab.php on line 21 (on the same

[PHP-DEV] ZEND_MODULE_API_NO in HEAD

2002-06-14 Thread Stefan Livieratos
Hi, the ZEND_MODULE_API_NO (zend_modules.h) is different in the php_4_2_1 and the HEAD branches. Is that supposed to be so? Regards Stefan Livieratos -- ICS Plus Internet Consulting + Services == Aeussere Brucker Str. 51 D-91052 Erlangen Germany =

[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 index = $i; } } } for ($i = 0; $i < 100; $i++) { for ($j = 0; $j < 100; $j++) { $arr[$i][$j] = new benchmark(100); echo "in doubleloop ". $i . "/" . $j . "\n"; } } ?> with php 4.2.1 everything is fi

[PHP-DEV] CVS Account Request: dmitry83

2002-06-14 Thread Dmitry Sustretov
translating PHP documentation into russian -- PHP Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Instantiating Objects ?

2002-06-14 Thread David Eriksson
On Thu, 13 Jun 2002, brad lafountain wrote: > There is no transpartent way of creating a c++ object from php. What you can do > is create a php extension that will proxy the calls to your c++ object. Once > you do that you can pass anything into your c++ class (querystring). > > take a look at

[PHP-DEV] regarding bug #12647 - should sprintf("%f", ...) be locale-aware?

2002-06-14 Thread Hartmut Holzgraefe
it is in C, using the decimal point settings from current locale instead of just always '.' i have patched formatted_print.c to be aware of this but i'm not yet sure about the BC consequences ... -- Hartmut Holzgraefe [EMAIL PROTECTED] http://www.six.de/ +49-711-99091-77 -- PHP Developme

Re: [PHP-DEV] ZEND_MODULE_API_NO in HEAD

2002-06-14 Thread Jani Taskinen
I _think_ it's supposed to be same now..or maybe a bit higher in HEAD (don't remember if there were any such changes in Zend which breaks the compatibility). --Jani On Fri, 14 Jun 2002, Stefan Livieratos wrote: >Hi, > >the ZEND_MODULE_API_NO (zend_modules.h) is different in the ph

[PHP-DEV] CVS Account Request: lboshell

2002-06-14 Thread Leonardo Boshell
I want to help translating PHP documentation (the manual, basically) into Spanish. Thanks. -- PHP Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Any chance of php_pear.dll?

2002-06-14 Thread Stig S. Bakken
On Mon, 2002-06-03 at 21:35, Michael Dransfield wrote: > Is there any chance of including php_pear into the latest snap at > snaps.php.net ?? > > I know it is very beta... but id at least like to experiment on my windows > machine > > I notice you have included dotnet stuff, but not your o

Re: [PHP-DEV] Patch-tastic!

2002-06-14 Thread Stig S. Bakken
On Wed, 2002-06-05 at 10:44, Ilker Cetinkaya wrote: > > "Sebastian Bergmann" <[EMAIL PROTECTED]> wrote in message > [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > Andrei Zmievski wrote: > > > The latest one changes some operators. > > > > Nice, but why not overload + for strings to do the con

Re: [PHP-DEV] Registering classes in PHP extension

2002-06-14 Thread Stig S. Bakken
On Fri, 2002-06-07 at 14:21, Eunsoo Seo wrote: > Hi. > > Any manual about registering classes in PHP extension? > I found that the function zend_register_internal_class can do that. > And I read some code in ext/ that contaings that function, but I can hardly > understand that code. > > Any manu

Re: [PHP-DEV] PECL != Siberia

2002-06-14 Thread Stig S. Bakken
Okay, one problem seems to be solved: go-pear supports Windows now. Download http://pear.php.net/go-pear and do "php -q go-pear". Next issue is prebuilt extensions. I really want to have package signatures (with pgp/gpg) before going there, but again I'm not sure what the most feasible approa

Re: [PHP-DEV] Zend 2 const class members private?

2002-06-14 Thread Stig S. Bakken
On Mon, 2002-06-10 at 22:37, Leendert Brouwer wrote: > I have just started experimenting with the Zend 2 engine, and totally love > the new OO features. I'm not sure whether this has been discussed or not (I > couldn't find it in the archives, anyway), but I ran into a few things: > Constant class

Re: [PHP-DEV] html tokenizer to add to tokenizer?

2002-06-14 Thread Stig S. Bakken
Good idea. I assume you want this for WidgetHTML.php? ;-) - Stig On Wed, 2002-06-12 at 14:26, Alan Knowles wrote: > Attached hopefully is the re2c source for a html tokenizer - I added it > to tokenizer.c - any thoughts on inclusion? > > regards > alan > > > > > enum { > STA

Re: [PHP-DEV] html tokenizer to add to tokenizer?

2002-06-14 Thread Alan Knowles
Stig S. Bakken wrote: >Good idea. I assume you want this for WidgetHTML.php? ;-) > > Yeah, I hopefully it would remove the need for preg_matching in there.. Will get back to this in a few days - want to clear off some other stuff... regards alan > - Stig > >On Wed, 2002-06-12 at 14:26, Alan

[PHP-DEV] register_globals vs session.force_nocookie

2002-06-14 Thread Giancarlo Pinerolo
Hi. Last here, same period, I found that nasty thing in ?_PHPLIB[libdir]=http:// It was the nefarious start of the register_globals=off saga. Now Sascha has agreed to add a session.use_only_cookie directive, because session.use_cookie wasn't doing it really all the times. In fact, contrary to

Re: [PHP-DEV] register_globals vs session.force_nocookie

2002-06-14 Thread Jani Taskinen
I was wondering (I'm propably wrong, it's almost 6am here :) that wouldn't the real fix for this without having to add yet-another-ini-option have been to fix this so that logic with session.use_cookies and session_use_trans_sid worked like it was (?) meant to work.