Re: [PHP-DEV] Patch-tastic!

2002-06-04 Thread Sebastian Bergmann
Andrei Zmievski wrote: > The latest one changes some operators. Nice, but why not overload + for strings to do the concatenation? -- Sebastian Bergmann http://sebastian-bergmann.de/ http://phpOpenTracker.de/ Did I help you? Consider a gift: http://wishlist.sebastian-ber

Re: [PHP-DEV] PHP's vision

2002-06-04 Thread John Lim
"Ilia A." <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > Hi Ilia, > > > > Don't know, but it sure looks like encrypted mud. This isn't a.out you > > know. > > > > Perhaps we should ask Zeev or Andi :-) > > That could very well be the case, but anyone who can

Re: [PHP-DEV] PHP's vision

2002-06-04 Thread John Lim
"Dan Kalowsky" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > On Wed, 5 Jun 2002, John Lim wrote: > > Say you are Amazon or some similar company and has a fancy cluster for order > > processing. As orders come in, the cluster cannot handle the peak load, so >

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

2002-06-04 Thread Andi Gutmans
At 11:35 PM 6/4/2002 +0300, Jani Taskinen wrote: > The source snapshots don't have the bison/flex generated > files anymore..why is that? genfiles was broken but I fixed it in HEAD. Is this still not the case? Andi -- PHP Development Mailing List To unsubscribe,

Re: [PHP-DEV] Patch-tastic!

2002-06-04 Thread Aaron Bannert
On Tue, Jun 04, 2002 at 10:44:17PM -0500, Andrei Zmievski wrote: > In case you've missed it, I have been putting up unofficial patches for > PHP on my website. The latest one changes some operators. See the > website for more details. Is there a reason why you don't just post them here? -aaron

[PHP-DEV] Patch-tastic!

2002-06-04 Thread Andrei Zmievski
In case you've missed it, I have been putting up unofficial patches for PHP on my website. The latest one changes some operators. See the website for more details. Cheers, -Andrei http://www.gravitonic.com/ -- PHP Development Mailing List

[PHP-DEV] Bug #17538 proc_close() doesn't return exit value of process

2002-06-04 Thread Kim Saunders
Hi, I logged "Bug #17538 proc_close() doesn't return exit value of process" a little while a ago, full details are at http://bugs.php.net/bug.php?id=17538 obviously, but the short summary is that proc_close() doesn't return the exit value of the process, like it's meant to. The bug I logged has a

Re: [PHP-DEV] ZEND_FETCH_RESOURCE mystery

2002-06-04 Thread Markus Fischer
Hi, On Tue, Jun 04, 2002 at 10:21:09PM -0400, fabwash wrote : > i'm trying to use ZEND_FETCH_RESOURCE so I can use macros > instead of other stuff, but i can't figure out how to use it. > > I have the following php code: > > $blah = new Blah(); > $blah->doSomething(); > > When Blah() is c

[PHP-DEV] ZEND_FETCH_RESOURCE mystery

2002-06-04 Thread fabwash
Hello, i'm trying to use ZEND_FETCH_RESOURCE so I can use macros instead of other stuff, but i can't figure out how to use it. I have the following php code: $blah = new Blah(); $blah->doSomething(); When Blah() is called, I want to create a structure and store it as a resource: typedef stru

[PHP-DEV] openssl_pkcs7_encrypt and 3des

2002-06-04 Thread michael sullivan
I noticed in the documentation on openssl_pkcs7_encrypt that it only uses RC2-40. I'd like to modify it to use 3DES and was wondering if anyone has already done that, and if not, where should I modify the code to enable that encoding by default? I noticed in the php 4.2.1/ext/openssl/openssl.c so

Re: [PHP-DEV] PHP's vision

2002-06-04 Thread Dan Kalowsky
On Wed, 5 Jun 2002, John Lim wrote: > Say you are Amazon or some similar company and has a fancy cluster for order > processing. As orders come in, the cluster cannot handle the peak load, so > we need to queue the orders using some such technology until the cluster can > process them. These queue

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

2002-06-04 Thread Jani Taskinen
Is someone checking this?? Jim? I'd do it myself, but I don't have access there.. --Jani On Tue, 4 Jun 2002, Jani Taskinen wrote: > >The source snapshots don't have the bison/flex generated >files anymore..why is that? > >--Jani > > > -- -- PHP Develo

[PHP-DEV] newbie writing extensions

2002-06-04 Thread fabwash
All right, I finally started coding :) First of all, I must say I read the documentation, just in case you want to bash me on that.. I have questions about memory allocation, and documentation. 1) The documentation on writing extensions is not very "extensive". It tells you what is a zval, h

[PHP-DEV] Snapshots not build correctly..

2002-06-04 Thread Jani Taskinen
The source snapshots don't have the bison/flex generated files anymore..why is that? --Jani -- PHP Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/gd config.m4

2002-06-04 Thread Jani Taskinen
Should be fixed now. (read: Works fine here :) --Jani On Tue, 4 Jun 2002, Sebastian Bergmann wrote: >Jani Taskinen wrote: >> sniper Mon Jun 3 21:13:01 2002 EDT >> >> Modified files: >> /php4/ext/gdconfig.m4 >> Log: >> - Made the bundled libgd actual

[PHP-DEV] [PATCH] preg_match(_all) support for capturing offsets

2002-06-04 Thread David Brown
Hi Andrei, all: In a previous patch (http://news.php.net/article.php?group=php.dev&article=84281), support was added to preg_split for capturing offsets along with matches. The attached patch adds similar support to preg_match and preg_match_all via a new PREG_MATCH_OFFSET_CAPTURE flag. The cod

Re: [PHP-DEV] Quality of this list

2002-06-04 Thread Andi Gutmans
Was one of the questions about AG(allocated_memory)? Are you sure it's not initialized in zend_alloc.c? I see an initialization there. Andi At 11:45 AM 6/4/2002 +0200, Hans Rakers wrote: >Hello all, > >No offence, but whatever happened to the technical level on this list? >Last two weeks i po

Re: [PHP-DEV] PHP's vision

2002-06-04 Thread Ilia A.
> Hi Ilia, > > Don't know, but it sure looks like encrypted mud. This isn't a.out you > know. > > Perhaps we should ask Zeev or Andi :-) That could very well be the case, but anyone who can compile php/zend with debugging symbols and has a debuger like gdb or ddd will be able to easily grab the

Re: [PHP-DEV] PHP's vision

2002-06-04 Thread John Lim
"Ilia A." <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > John, > > If your authentication class holds the passwords inside wouldn't running the > 'strings' utility on the file reveal all the passwords even if the php script > is Zend Encoded? > > Ilia Hi Ilia

[PHP-DEV] Re: Funny message

2002-06-04 Thread Tom Sommer
"Michael Stolovitzsky" <[EMAIL PROTECTED]> skrev i en meddelelse [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Parse error: parse error, unexpected T_PAAMAYIM_NEKUDOTAYIM in [...] Come on... This needs to be fixed... It looks like Hebrew... I have to agree :) oh and Rasmus, I'm danish to, and

Re: [PHP-DEV] PHP's vision

2002-06-04 Thread John Lim
<[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > John Lim Wrote: > > Hi, > > > - advanced queueing > Queuing of what? > Say you are Amazon or some similar company and has a fancy cluster for order processing. As orders come in, the cluster cannot handle the pe

Re: [PHP-DEV] PHP's vision

2002-06-04 Thread John Lim
<[EMAIL PROTECTED]> wrote in message > > I am not a fan of 100% fully redundant systems. I think the expense of > such systems are rarely justified, and unless you have REALLY done the > work to understand what all your points of failure are, you are wasting > your time and money. Hello mlwmohaw

Re: [PHP-DEV] PHP's vision

2002-06-04 Thread mlwmohawk
John Lim Wrote: > Hi, > > I like the PHP language the way it is with some exceptions. Private > members and methods are essential from a security view-point, and > perhaps > application variables, but that's about it. My main problem with PHP's > direction is that it seems stuck at the l

Re: [PHP-DEV] Apache 2 support

2002-06-04 Thread Aaron Bannert
On Tue, Jun 04, 2002 at 03:11:40AM -0600, Venkat Raghavan wrote: > So, does this mean that Apache 2 support for PHP is not fully stable? > > In any case, my question on what to build is not answered. You should use the --with-apxs2 flag to configure to build the apache2filter sapi module in PHP.

[PHP-DEV] domxml patch

2002-06-04 Thread Rob Richards
can someone apply this patch to cvs for me. it fixes the problem reported in bug # 17560 i think i have solved the attachment problems, let me know if people still cant get my attachments. xmlKeepBlanksDefault default is 1 if not set. once set it remains at the new value until changed. the patch

Re: [PHP-DEV] Error with pspell

2002-06-04 Thread Jani Taskinen
Check your php.ini for 'magic_quotes_' directives and turn them off. --Jani On Tue, 4 Jun 2002, Magnus M wrote: >No, I'm not adding slashes, but somewhere something adding slashes. > >I'm using a form with some fields, lets call one of the XYZ and it's >those that I want to be

[PHP-DEV] ANN: QA & Evangelism Call to Arms @ LinuxTag

2002-06-04 Thread James Cox
For all of you who are interested in the way evangelism (marketing) and QA are going, or should be going, i'm going to be holding 2 meetings to lay stake and discuss the future and direction of the following PHP sub projects: php-evangelism and php-qa. The purpose of these meetings is for peopl

Re: [PHP-DEV] PHP's vision

2002-06-04 Thread Zeev Suraski
At 12:34 PM 6/4/2002, Sebastian Bergmann wrote: >Kristian Koehntopp wrote: > > "Peace through superior firepower"? That's a trademarked american > > concept at the moment, I think. > > Pax Americana replaced Pax Romana a while ago :) 'cept there's no pax... -- PHP Development Mailing List

Re: [PHP-DEV] Quality of this list

2002-06-04 Thread derick
On Tue, 4 Jun 2002, Hans Rakers wrote: > > Hello all, > > No offence, but whatever happened to the technical level on this list? Last > two weeks i posted 2 serious stories on the list, one about some > difficulties i had when building an extension and one about a possible > problem in the m

[PHP-DEV] Quality of this list

2002-06-04 Thread Hans Rakers
Hello all, No offence, but whatever happened to the technical level on this list? Last two weeks i posted 2 serious stories on the list, one about some difficulties i had when building an extension and one about a possible problem in the memory limit code of the Zend engine, but nobody seems

Re: [PHP-DEV] PHP's vision

2002-06-04 Thread Sebastian Bergmann
Kristian Koehntopp wrote: > "Peace through superior firepower"? That's a trademarked american > concept at the moment, I think. Pax Americana replaced Pax Romana a while ago :) -- Sebastian Bergmann http://sebastian-bergmann.de/ http://phpOpenTracker.de/ Did I help you?

Re: [PHP-DEV] Apache 2 support

2002-06-04 Thread Venkat Raghavan
So, does this mean that Apache 2 support for PHP is not fully stable? In any case, my question on what to build is not answered. - Venkat >>> Justin Erenkrantz <[EMAIL PROTECTED]> 04/06/2002 11:17:02 >>> On Mon, Jun 03, 2002 at 10:06:42PM -0600, Venkat Raghavan wrote: > Hi. I'm trying to build

Re: [PHP-DEV] PHP's vision

2002-06-04 Thread Kristian Koehntopp
Am Montag, 3. Juni 2002 18:11 schrieb Sebastian Bergmann: > Zeev Suraski wrote: > > Hmm, because he's bigger? :) > > I can live with that :) "Peace through superior firepower"? That's a trademarked american concept at the moment, I think. Kristian -- PHP Development Mailing List

Re: [PHP-DEV] Funny message

2002-06-04 Thread Vergoz Michael
hmf - Original Message - From: "Kristian Koehntopp" <[EMAIL PROTECTED]> To: "Rasmus Lerdorf" <[EMAIL PROTECTED]>; "Michael Stolovitzsky" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Tuesday, June 04, 2002 10:00 AM Subject: Re: [PHP-DEV] Funny message > > On Tue, 4 Jun 2002, Michael

Re: [PHP-DEV] Funny message

2002-06-04 Thread Markus Fischer
Hi, I've seen quite a few bug reports (read: feature requests) for that. It just needs volunteers :-) - Markus On Tue, Jun 04, 2002 at 10:00:09AM +0200, Kristian Koehntopp wrote : > > On Tue, 4 Jun 2002, Michael Stolovitzsky wrote: > > > Parse error: parse error, unexpected T_

Re: [PHP-DEV] Funny message

2002-06-04 Thread Kristian Koehntopp
> On Tue, 4 Jun 2002, Michael Stolovitzsky wrote: > > Parse error: parse error, unexpected T_PAAMAYIM_NEKUDOTAYIM > > in [...] > > > > With all due respect to Hebrew humour, am I the only one who > > thinks that the above line is confusing to non-Israeli? ;) > Hey, I am a transplanted Canadian D