Re: [PHP-DEV] Patch-tastic!

2002-06-05 Thread Ilker Cetinkaya
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 concatenation? i totally agree, overloading + for string concat is really

[PHP-DEV] [PATCH] or Karmarequest for zend_llist.c

2002-06-05 Thread Stefan Esser
Hi, herewith i send my patch for the memory leak within ZendEngine(1/2). This was discussed with Zeev and Andi before but noone fixed it. So please apply the patch now, or give me the karma and I do it myself... Stefan --- zend_llist.c.orig Wed Jun 5 13:58:41 2002 +++ zend_llist.c

Re: [PHP-DEV] [PATCH] or Karmarequest for zend_llist.c

2002-06-05 Thread derick
On Wed, 5 Jun 2002, Stefan Esser wrote: Hi, herewith i send my patch for the memory leak within ZendEngine(1/2). This was discussed with Zeev and Andi before but noone fixed it. So please apply the patch now, or give me the karma and I do it myself... Committed to CVS. Derick

Re: [PHP-DEV] [PATCH] or Karmarequest for zend_llist.c

2002-06-05 Thread Markus Fischer
Hi, since there obviously was never a talk on this list about and out of curiosity, how can the leak be reproduced? - Markus On Wed, Jun 05, 2002 at 11:55:28AM +0200, Stefan Esser wrote : herewith i send my patch for the memory leak within ZendEngine(1/2). This was discussed

Re: [PHP-DEV] PHP's vision

2002-06-05 Thread mlwmohawk
John Lim Wrote: If the cluster cannot handle the load, then the queues will just get longer and longer. It's interesting that mlwmohawk asked about this because msession is a lightweight session handler without rdbms overhead. Similarly queuing is used instead of a real database for

Re: [PHP-DEV] PHP's vision

2002-06-05 Thread mlwmohawk
Peace through superior firepower? That's a trademarked american concept at the moment, I think. Kristian Can we please keep the anti-american comments to ourselves. -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] WHAT is PHP's vision????

2002-06-05 Thread mlwmohawk
This was a great post, it says what I tried to say but lacked the eloquence with which to say it. Perhaps I am showing my age, but it seems these progammatic style issues are common with developers with less experience. I remember coding assembly language with pencil, hex-code sheet, and

Re: [PHP-DEV] PHP's vision

2002-06-05 Thread Sterling Hughes
Peace through superior firepower? That's a trademarked american concept at the moment, I think. Kristian Can we please keep the anti-american comments to ourselves. Well, he can't help it, making broad generalizations about a culture is a trademarked german concept...

[PHP-DEV] Select-List

2002-06-05 Thread DragosB
Hi, How can I check how many options has been selected from a select list? I tried in many ways, but it returns the last option selected. DragosB -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Select-List

2002-06-05 Thread Jeroen Smeets
I suppose you mean a multiple select-list: by adding [] to the name of the field, you get an array in PHP that has the selected items. SELECT NAME=name[] MULIPLE gives you an array $name[] -- Jeroen DragosB wrote: How can I check how many options has been selected from a select list? I

[PHP-DEV] errno-13 Persmission Denied

2002-06-05 Thread Anil Garg
Hi, I am trying to upload a file in to a directory(which has mode 666) It gives the followring error: Warning: stats failed for /netvcr/www/archive/data1.cab (errno=13 - Permission denied) in /z/mercury/www/data/content/admin/do_upload.php on line 16 --- but it works fine

Re: [PHP-DEV] PHP's vision

2002-06-05 Thread Kristian Koehntopp
Am Mittwoch, 5. Juni 2002 14:26 schrieb [EMAIL PROTECTED]: Peace through superior firepower? That's a trademarked american concept at the moment, I think. Kristian Can we please keep the anti-american comments to ourselves. Or else! :-) Kristian -- PHP Development Mailing

RE: [PHP-DEV] PHP's vision

2002-06-05 Thread Lukas Smith
Come on ... This conversation is just fulling mailboxes and the entertainment value is questionable while at the same time offense to atleast some ... So just keep it down and lets stay on topic Thx, Lukas Smith [EMAIL PROTECTED] ___ DybNet Internet Solutions GbR

Re: [PHP-DEV] errno-13 Persmission Denied

2002-06-05 Thread Chris Shiflett
A directory has to have execute privileges for you to be able to do anything within it. A mode of 666 does not have execute privileges for anyone, while 777 does. Chris --- Anil Garg [EMAIL PROTECTED] wrote: Hi, I am trying to upload a file in to a directory(which has mode 666) It gives

[PHP-DEV] php4/dl

2002-06-05 Thread James Cox
Guys, would anyone have a problem removing /php4/dl/ from cvs, (obviously backing it up somewhere) to reduce the amount of time for checkout? James -- James Cox :: [EMAIL PROTECTED] :: Landonize It! http://landonize.it/ Was I helpful?

[PHP-DEV] Re: Patch-tastic!

2002-06-05 Thread Andrei Zmievski
Hi Aaron, 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? Simply because I have a few other ones on the website that

[PHP-DEV] Re: Patch-tastic!

2002-06-05 Thread Andrei Zmievski
The latest one changes some operators. Nice, but why not overload + for strings to do the concatenation? Doing that would be ambiguous, to say the least. PHP automatically converts operand types with arithmetic + operator. What would you expect the result of the following expressions to

Re: [PHP-DEV] Re: Patch-tastic!

2002-06-05 Thread Jason T. Greene
If '+' concatenates what does '-' do? : ) -Jason On Wed, 2002-06-05 at 09:39, Andrei Zmievski wrote: The latest one changes some operators. Nice, but why not overload + for strings to do the concatenation? Doing that would be ambiguous, to say the least. PHP automatically

[PHP-DEV] domxml patch

2002-06-05 Thread Rob Richards
can someone apply this patch to cvs for me. it fixes a problem in domxml_dump_mem_file with xmlKeepBlanksDefault not being reset when the formatting parameter is true. same problem that was in domxml_dump_mem, but missed this function yesterday. thanks rob Index: php_domxml.c

Re: [PHP-DEV] domxml patch

2002-06-05 Thread derick
Hoi, I committed this (and yesterday's fix). Thanks! Derick On Wed, 5 Jun 2002, Rob Richards wrote: can someone apply this patch to cvs for me. it fixes a problem in domxml_dump_mem_file with xmlKeepBlanksDefault not being reset when the formatting parameter is true. same problem that was

Re: [PHP-DEV] Re: Patch-tastic!

2002-06-05 Thread Rasmus Lerdorf
Heh, this is sounding like PHP 1 and 2 days again. Back then I had + as the contanation operator. I actually implemented all the operators. abc - b gave you ac. abc * def gave you the cross product vector of vectors abc and def. '/' reversed that. Not very useful. On 5 Jun 2002, Jason T.

Re: [PHP-DEV] Re: Patch-tastic!

2002-06-05 Thread Sebastian Bergmann
Rasmus Lerdorf wrote: Not very useful. Yeah, never mind. -- Sebastian Bergmann http://sebastian-bergmann.de/ http://phpOpenTracker.de/ Did I help you? Consider a gift: http://wishlist.sebastian-bergmann.de/ -- PHP Development Mailing List http://www.php.net/ To

Re: [PHP-DEV] Patch-tastic!

2002-06-05 Thread Alexander Wagner
Sebastian Bergmann wre: Andrei Zmievski wrote: The latest one changes some operators. Nice, but why not overload + for strings to do the concatenation? No way. Many people don't know (think newbies here) what types their variables have, and don't care. This feature would quickly

[PHP-DEV] What's wrong with configure on the Solaris 2.7/2.8 install

2002-06-05 Thread mike . haugen
Php can't make. Looks like a bad configure. Calling for unix.h which doesn't exist on Solaris 2.8. Making all in Zend make[1]: Entering directory `/data/3/php/php-4.2.1/Zend' make[1]: Nothing to be done for `all'. make[1]: Leaving directory `/data/3/php/php-4.2.1/Zend' Making all in main

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

2002-06-05 Thread Jani Taskinen
On Wed, 5 Jun 2002, Andi Gutmans wrote: 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? I have no idea how the snapshots

Re: [PHP-DEV] What's wrong with configure on the Solaris 2.7/2.8 install

2002-06-05 Thread Markus Fischer
Hi, yup it broken and known. This is due autoconf 2.13 on solaris not working properly. Either rebuild configure with 2.52 or just use CC=gcc ./configure ... - Markus On Wed, Jun 05, 2002 at 01:07:48PM -0500, [EMAIL PROTECTED] wrote : Php can't make. Looks like a bad

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

2002-06-05 Thread Andi Gutmans
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: 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

Re: [PHP-DEV] Re: Patch-tastic!

2002-06-05 Thread Alexander Wagner
Rasmus Lerdorf wrote: Not very useful. But certainly very cool. Somehow. Where are the people begging for complexity in the language? ;-) regards Wagner -- When did ignorance become a point of view? -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit:

[PHP-DEV] New extension

2002-06-05 Thread Garland foster
Hi all, I just finished a php extension for repat an RDF parser in C coded by Jason Diammond, with this extension we are able to parse RDF files (in any syntactical representation) from PHP and process the RDF statements as we want. Web based RDF management systems written in PHP are possible

Re: [PHP-DEV] New extension

2002-06-05 Thread brad lafountain
What is RDF? - brad --- Garland foster [EMAIL PROTECTED] wrote: Hi all, I just finished a php extension for repat an RDF parser in C coded by Jason Diammond, with this extension we are able to parse RDF files (in any syntactical representation) from PHP and process the RDF statements as

Re: [PHP-DEV] Re: Patch-tastic!

2002-06-05 Thread Andrei Zmievski
On Wed, 05 Jun 2002, Rasmus Lerdorf wrote: Heh, this is sounding like PHP 1 and 2 days again. Back then I had + as the contanation operator. I actually implemented all the operators. abc - b gave you ac. abc * def gave you the cross product vector of vectors abc and def. '/' reversed

[PHP-DEV] Re: xpath and the current context

2002-06-05 Thread Dan Allen
We welcome you to a discussion already in progress. Dan Allen (that's me) brought up the issue that in the domxml extension, the xpath_eval function does not allow you to begin the query relative to a given node, as is possible in both the libxml2 libraries and as we are so familiar with, in

Re: [PHP-DEV] New extension

2002-06-05 Thread Garland foster
Resource Description Framework a core technology for the semantic web defined by the W3C http://www.w3.org/RDF/ RDF graphs are used to represent metadata and the XML RDF syntax is widely used as a format to distribute, process and exchange metadata. RSS the nice XML vocabulary that many users

Re: [PHP-DEV] New extension

2002-06-05 Thread Braulio José Solano Rojas
Hi! RDF = Resource Description Framework. You can find some info about it in http://www.w3.org/RDF/. I think this extension is a very good improvement, and I hope it will not happen like when I proposed the Isis extension. Sometimes anybody shows interest or curiosity. Therefore Brad made a

[PHP-DEV] zlib double free bug and php

2002-06-05 Thread Lenny Miceli
Sorry to post here but I've received no response on the php-general list. I posted the following to that list a couple days ago and I was wondering if anyone on this list can help me. Thank you for your time.Lenny I've tried to search the archives/bug reports/faq's and didn't find any

Re: [PHP-DEV] zlib double free bug and php

2002-06-05 Thread Markus Fischer
Hi, PHP is as vulnerable as it is the libz of your system. PHP does not include zlib, it links against it which means it has already to be on your system. It is up to you to have the proper libz on your system, PHP just links against it. That's it. - Markus On Wed,

Re: [PHP-DEV] zlib double free bug and php

2002-06-05 Thread Stefan Roehrich
Hello! On 2002-06-05 15:39:55, Lenny Miceli wrote: issue. Even though I didn't compile php with the --with-zlib option when I run strings against the php library I still see zlib information. For Maybe zlib is used by another library which PHP uses (e.g. some graphic library, MySQL, ...).

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

2002-06-05 Thread Dave Mertens
On Tue, Jun 04, 2002 at 01:41:44PM +0100, James Cox wrote: 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:

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

2002-06-05 Thread Jim Winstead
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: The source snapshots don't have the bison/flex generated files anymore..why is that? genfiles was

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

2002-06-05 Thread derick
On Wed, 5 Jun 2002, Dave Mertens wrote: On Tue, Jun 04, 2002 at 01:41:44PM +0100, James Cox wrote: 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