Re: [PHP-DEV] [Patch] LDAP Error reporting for 4.2.1

2002-06-27 Thread derick
On 26 Jun 2002, Kristofer T. Karas wrote: On Wed, 2002-06-26 at 15:47, [EMAIL PROTECTED] wrote: I think I caught that one... can you make sure? BTW.. I did a few other extensions too :) My pleasure! :-) But I'm not using CVS, so if you wouldn't mind, send it hither in email and I'll

RE: [PHP-DEV] Re: [Zend Engine 2] RE: [PHP-DEV] REPOST: Class Autoloading [PATCH]

2002-06-27 Thread phpsurf
-Original Message- From: Andi Gutmans [mailto:[EMAIL PROTECTED]] Sent: mercredi 26 juin 2002 21:02 To: Brad LaFountain; Ivan Ristic; phpsurf Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Re: [PHP-DEV] Re: [Zend Engine 2] RE: [PHP-DEV] REPOST: Class Autoloading [PATCH] Hey,

[PHP-DEV] zend2 design arhitecture

2002-06-27 Thread Tit \Black\ Petric
[quote ZEND_CHANGES.txt] * Forced deletion of objects. .. yadda .. Note that if you have a user-defined function delete() in an old script, this script will yield a parser error with the Zend Engine 2.0, since 'delete' is now a reserved word. [/quote] if you chose

[PHP-DEV] Fw: PHP content-disposition vuln

2002-06-27 Thread Peter Petermann
Hi All, this is a message that was Posted to incidents list @ securityfocus. Roland von Herget recognized some unusual traffic in his Logs. Maybe someone else can check if he can find that too, and if he does post a message (maybe to incidents list too). There could be a worm or something like

Re: [PHP-DEV] Fw: PHP content-disposition vuln

2002-06-27 Thread Stefan Esser
Hi all, this is not a worm. According to the logs someone attacked this guy with one of the TESO exploits 7350fun or 73501867 in bruteforce mode. Stefan Esser -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Fw: PHP content-disposition vuln

2002-06-27 Thread Peter Petermann
this is not a worm. According to the logs someone attacked this guy with one of the TESO exploits 7350fun or 73501867 in bruteforce mode. Thanks for this Info, ill forward that :) Regards, Peter Petermann -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit:

Re: [PHP-DEV] Re: Has this fp fix been considered? - ADDENDUM

2002-06-27 Thread George Whiffen
Andi Gutmans wrote: I don't quite understand. Can you give us a few examples, how they are handled by PHP today and how they would be handled by your code. I'll start off: 0.9+0.1 0.9+0.001 8/10.0 + 0.2 I'm sure you know of juicier examples :) Andi Andi, All the fix does is to

[PHP-DEV] Key values starting with .

2002-06-27 Thread Brian France
Hello, I have a url that ends with ?.value=1, but PHP returns this in $_REQUEST as _value instead of .value. I believe this is because of this code: main/php_variables.c 104 /* ensure that we don't have spaces or dots in the variable name (not binary safe) */ 105 for

Re: [PHP-DEV] Key values starting with .

2002-06-27 Thread Edin Kadribasic
I can do this: $_REQUEST['.name'] = testing then if I do print_r($_REQUEST) prints it out as .value and not _value. Any reason for being able to do one, but not the other? Also what is the (not binary safe) part of a variable with a . in its name? I know that changing this would break a

Re: [PHP-DEV] Key values starting with .

2002-06-27 Thread Andi Gutmans
At 08:32 AM 6/27/2002 -0700, Brian France wrote: Hello, I have a url that ends with ?.value=1, but PHP returns this in $_REQUEST as _value instead of .value. I believe this is because of this code: main/php_variables.c 104 /* ensure that we don't have spaces or dots in the

[PHP-DEV] Installation instructions for HP Nonstop Servers

2002-06-27 Thread fab wash
Hello all, those are instructions to install and run PHP 4 on HP Nonstop Servers. I have included a .doc and .rtf files, i'm not sure which format is the best. I think this should be put as an INSTALL.HPNONSTOP file in the main distribution, as installing on those systems is very different

RE: [PHP-DEV] Re: [Zend Engine 2] RE: [PHP-DEV] REPOST: Class Autoloading [PATCH]

2002-06-27 Thread Andi Gutmans
At 11:21 AM 6/27/2002 +0200, phpsurf wrote: -Original Message- From: Andi Gutmans [mailto:[EMAIL PROTECTED]] Sent: mercredi 26 juin 2002 21:02 To: Brad LaFountain; Ivan Ristic; phpsurf Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Re: [PHP-DEV] Re: [Zend Engine 2] RE:

[PHP-DEV] Idea for CLI feature

2002-06-27 Thread Andi Gutmans
Hey, It'd be cool if phpinfo() would print its output in regular text (no HTML) when used with the CLI version (a bonus would be to also be able to pass it a parameter in CGI mode to select this mode). The way phpinfo() is written this is quite easy to do as we're using centralized print

RE: [PHP-DEV] Re: [Zend Engine 2] RE: [PHP-DEV] REPOST: Class Autoloading [PATCH]

2002-06-27 Thread phpsurf
right, it's already a really nice feature that many of us had been expecting for a while ... thanks for making it happen :) -Original Message- From: Andi Gutmans [mailto:[EMAIL PROTECTED]] Sent: jeudi 27 juin 2002 18:37 To: phpsurf Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject:

Re: [PHP-DEV] Idea for CLI feature

2002-06-27 Thread Marcus Börger
At 18:43 27.06.2002, Andi Gutmans wrote: Hey, It'd be cool if phpinfo() would print its output in regular text (no HTML) when used with the CLI version (a bonus would be to also be able to pass it a parameter in CGI mode to select this mode). The way phpinfo() is written this is quite easy to

[PHP-DEV] session related connection handling/cvs/mem

2002-06-27 Thread Ron Lange
Hi, I have to build a extension for PHP, which is connecting to a special server over tcp/ip. For each session (client-php) a session related set of data has to be kept, inclusive the socket descriptors and so on. 1. How can I keep the relationship of the data and the session? The data

Re: [PHP-DEV] session related connection handling/cvs/mem

2002-06-27 Thread derick
On Thu, 27 Jun 2002, Ron Lange wrote: Hi, I have to build a extension for PHP, which is connecting to a special server over tcp/ip. For each session (client-php) a session related set of data has to be kept, inclusive the socket descriptors and so on. 1. How can I keep the relationship

Re: [PHP-DEV] session related connection handling/cvs/mem

2002-06-27 Thread Andi Gutmans
At 10:41 PM 6/27/2002 +0200, [EMAIL PROTECTED] wrote: 4. Our project uses own memory functions, since the sources will be compiled on several different platforms. Do I have to use zend's exxx memory functions? No, you don't need too, but if you use them they show memory leakage when the

Re: [PHP-DEV] session related connection handling/cvs/mem

2002-06-27 Thread Rasmus Lerdorf
I have to build a extension for PHP, which is connecting to a special server over tcp/ip. For each session (client-php) a session related set of data has to be kept, inclusive the socket descriptors and so on. 1. How can I keep the relationship of the data and the session? The data consists

Re: [PHP-DEV] Idea for CLI feature

2002-06-27 Thread Jan Lehnardt
Hi, On Thu, Jun 27, 2002 at 07:43:02PM +0300, Andi Gutmans wrote: Does anyone feel like doing this? I don't have too much time :'( it is on my todo list, I'll give it a try at the weekend. Jan -- Q: Thank Jan? A: http://geschenke.an.dasmoped.net/ -- PHP Development Mailing List

Re: [PHP-DEV] Call perl from PHP

2002-06-27 Thread Chhai Thach
I have tried exec(), passthru() but non of these return the array values. The only function that return me anything is system(), I think it returns the process number. What I want to do is able to query the perl script, and have data returned to PHP. Normal querying such as