Re: [PHP-DEV] PHP 4.0 Bug #8795: Recieved POST-form-data is unexpectedly escaped with backslashes

2001-01-19 Thread Jason Greene
From a hostile standpoint, a sendmail server allowing VRFY is considered bad, /let alone giving the hacker detailed uid/gid structure of your system. Jason - Original Message - From: "Ignacio Vazquez-Abrams" [EMAIL PROTECTED] To: "Toby Butzon" [EMAIL PROTECTED] Cc: [EMAIL PROTECTED];

[PHP-DEV] Re: shebang through suid-wrapper (execv)

2001-01-19 Thread Jason Greene
Johan, Your problem has to do with the combination of your suexec-like cgi-wrapper and the detection algorythem implied in php. CGI mode of php detects your webserver by looking at various environment rules (eg. SERVER_SOFTWARE). When you a cgi is executed by the webserver (ex. wrapper.cgi),

[PHP-DEV] Mean

2001-01-19 Thread Jason Greene
I was just looking at php4/TODO. What is the desired capability for array_mean? Is this refering to the mean of all numerical elements in the list? Is the desired functionality to count non numerical data as 0's or to completly ignore them from the alg? -Jason

Re: [PHP-DEV] Mean

2001-01-19 Thread Jason Greene
Thanks, I Removed it from cvs. -Jason Andrei Zmievski wrote: On Fri, 19 Jan 2001, Jason Greene wrote: I was just looking at php4/TODO. What is the desired capability for array_mean? Is this refering to the mean of all numerical elements in the list? Is the desired functionality

Re: [PHP-DEV] http://cvs.php.net/

2001-01-22 Thread Jason Greene
Thats when you cp /mnt/winblows/windows/fonts/*.ttf .; mkttfdir fonts.dir; killall -HUP xfs : ) Jason - Original Message - From: "Anil Madhavapeddy" [EMAIL PROTECTED] To: "Martin Jansen" [EMAIL PROTECTED] Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Monday, January 22, 2001 1:24

[PHP-DEV] array_add

2001-01-22 Thread Jason Greene
Is array_add in TODO refering to the summation of the individual elements in an array? ex (1,2,3) +(2,3,4)=(3,5,7)? Jason -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list

Fw: [PHP-DEV] PHP 4.0 Bug #8889: Memory is not being freed.

2001-01-29 Thread Jason Greene
MaxRequestsPerChild is perfectly safe, and I always believe in setting it. Keep in mind that if you compile all modules into apache statically, it takes up far more base mem per process. If you use all DSO's, you can significantly reduce memory usage. To find out what's in use on RH7 cat

Re: [PHP-DEV] PHP 4.0 Bug #8889: Memory is not being freed.

2001-01-29 Thread Jason Greene
What is your typical apache process size, and number of current running procs? Jason - Original Message - From: "Brian Moon" [EMAIL PROTECTED] To: "Rasmus Lerdorf" [EMAIL PROTECTED] Cc: "Filip Sielimowicz" [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Monday, January 29, 2001 6:23 PM

[PHP-DEV] Re: safe_mode redesign

2001-02-06 Thread Jason Greene
e referred to in documentation as "An experimental security option designed for ISP and hosting providers. This is by no means the finality of security, just a tool to help in developing a secure environment" Thanks, Jason - Original Message -- From: "Zeev Suraski" [EMAIL PROTEC

[PHP-DEV] Re: safe_mode redesign

2001-02-16 Thread Jason Greene
PROTECTED] To: "Jason Greene" [EMAIL PROTECTED] Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Tuesday, February 06, 2001 5:36 PM Subject: Re: safe_mode redesign At 21:53 6/2/2001, Jason Greene wrote: Zeev, I understand your viewpoint, but I respectfully disagree. I believe that

Re: [PHP-DEV] PHP 4.0 Bug #9337 Updated: make in_array return key, if searched value was found

2001-02-19 Thread Jason Greene
Some of my thoughts: 1. if you change the return value of in_array to return the key, you can get a false error in your if statement, imagine if in_array found the element in key 0? : ) 2. I would say that returning a key is a bit more useful then an option that does not reset the internal

Re: [PHP-DEV] PHP 4.0 Bug #9337 Updated: make in_array return key, if searched value was found

2001-02-19 Thread Jason Greene
be changed. We could create another function that is more designed for searching? perhaps array_find? I wouldn't mind spending time on this if agreed upon. -Jason - Original Message - From: "Andrei Zmievski" [EMAIL PROTECTED] To: "Jason Greene" [EMAIL PROTECTED]

Re: [PHP-DEV] PHP 4.0 Bug #9337 Updated: make in_array return key, if searched value was found

2001-02-19 Thread Jason Greene
I agree, That way we don't duplicate code, and we don't have different behavior.. Ill work on this sometime today -Jason - Original Message - From: "Andrei Zmievski" [EMAIL PROTECTED] To: "Jason Greene" [EMAIL PROTECTED] Cc: "Andr Langhorst" [EMAIL PROTEC

Re: [PHP-DEV] CVS Account Request

2001-02-28 Thread Jason Greene
We still are getting these? - Original Message - From: "CVS Account Request" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, February 27, 2001 8:22 AM Subject: [PHP-DEV] CVS Account Request Full name: Ivan Ivanov Email: [EMAIL PROTECTED] ID: johnt Purpose: web programming

[PHP-DEV] OO overloading

2001-03-06 Thread Jason Greene
Andi, I just started working on an InterMail extension for php. I am not sure if I can release it into the tree (openwave has some licensing issues), but If I can I will add it in the future. Anyways, I am in the initial phases of this project, and I was considering using the Zend OO

Re: [PHP-DEV] Static vars in methods

2001-03-09 Thread Jason Greene
this sounds like a bad thing, especially if people start depending on that behavior -Jason - Original Message - From: "Andrei Zmievski" [EMAIL PROTECTED] To: "PHP Developers" [EMAIL PROTECTED] Cc: "Zeev Suraski" [EMAIL PROTECTED]; "Andi Gutmans" [EMAIL PROTECTED] Sent: Friday,

[PHP-DEV] zend_llist_destroy on overloaded element list casuses SEG

2001-03-09 Thread Jason Greene
I am writing an OO overloaded module, and I can not figure out why this is occuring, but after my function call handler is called, I get a segmentation fault in zend_llist_destroy on REMOVE_POINTER_FROM_LIST(p) within efree. Does anyone know off the top of their head what I could possibly be

Re: [PHP-DEV] zend_llist_destroy on overloaded element list casuses SEG

2001-03-09 Thread Jason Greene
Never mind this, I somehow was overwriting part of my stack frame, specifically where my overloaded element list was. Thanks, -Jason - Original Message - From: "Jason Greene" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, March 09, 2001 12:41 PM Subject

Re: [PHP-DEV] Re: [ZEND-ENGINE] cvs: Zend / zend_API.c zend_API.h

2001-03-12 Thread Jason Greene
: ) -Jason - Original Message - From: "Andrei Zmievski" [EMAIL PROTECTED] To: "Jason Greene" [EMAIL PROTECTED] Cc: "Zeev Suraski" [EMAIL PROTECTED]; "php-dev mailinglist" [EMAIL PROTECTED] Sent: Monday, March 12, 2001 10:15 AM Subject: Re: [PHP-DEV]

[PHP-DEV] whats the standard for OO builtin_functions?

2001-03-12 Thread Jason Greene
Can anyone tell me what the standard is for the builtin_functions function_entry in OO, should i use a or b A) static function_entry class_function_entry = { PHP_FALIAS(member_fnction, php_member_function, NULL) {NULL, NULL,NULL} }; B) static function_entry

[PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/fbsql .cvsignore Makefile.in config.m4 fbsql.dsp php_fbsql.c php_fbsql.h

2001-03-13 Thread Jason Greene
Frank, Your config.m4 breaks the build. -Jason - Original Message - From: "Frank M. Kromann" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, March 13, 2001 2:58 PM Subject: [PHP-CVS] cvs: php4 /ext/fbsql .cvsignore Makefile.in config.m4 fbsql.dsp php_fbsql.c php_fbsql.h fmk

[PHP-DEV] Re: =?iso-8859-1?Q?Re: [PHP-CVS] cvs: php4 /ext/fbsql .cvsignore Makefile.in config.m4 fbsql.d=

2001-03-13 Thread Jason Greene
- From: [EMAIL PROTECTED] Sent: Tuesday, March 13, 2001 4:24 PM Subject: =?iso-8859-1?Q?Re: [PHP-CVS] cvs: php4 /ext/fbsql .cvsignore Makefile.in config.m4 fbsql.d= sp php_fbsql.c php_fbsql.h?= To: Jason Greene [EMAIL PROTECTED] From: "Frank M. Kromann" [EMAIL PROTECTED] X-Maile

Re: RE: [PHP-DEV] 4.0.5RC1

2001-03-14 Thread Jason Greene
Andi + Zeev, I wouldn't consider bug number 8828 a show-stopper, unless you want to implement a work-around for OS X. If you read my comments on 8828 you will see that PHP's mktime + documentation is clearly following the standard, its OS X that isn't -Jason - Original Message -

Re: [PHP-DEV] PHP 4.0 Bug #8828 Updated: mktime using mday=0

2001-03-14 Thread Jason Greene
Hi Sascha, Look at 7.23.2.6 Normalization of broken-down times -Jason - Original Message - From: "Sascha Schumann" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Wednesday, March 14, 2001 12:49 PM Subject: Re: [PHP-DEV] PHP 4.0 Bug #8828 Updated: mktime using

Re: [PHP-DEV] PHP 4.0 Bug #8828 Updated: mktime using mday=0

2001-03-14 Thread Jason Greene
umann" [EMAIL PROTECTED] To: "Jason Greene" [EMAIL PROTECTED] Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Wednesday, March 14, 2001 1:00 PM Subject: Re: [PHP-DEV] PHP 4.0 Bug #8828 Updated: mktime using mday=0 On Wed, 14 Mar 2001, Jason Greene wrote: Hi Sascha, Look at 7.2

Re: [PHP-DEV] PHP 4.0 Bug #8828 Updated: mktime using mday=0

2001-03-14 Thread Jason Greene
m: "Sascha Schumann" [EMAIL PROTECTED] To: "Jason Greene" [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Wednesday, March 14, 2001 1:39 PM Subject: Re: [PHP-DEV] PHP 4.0 Bug #8828 Updated: mktime using mday=0 Hi, Either way though, you are saying that this has not been

Re: [PHP-DEV] feature request

2001-03-19 Thread Jason Greene
Perhaps isset should be branched to form a separate function to handle multi args, we could offer things in the new function such as an optional argument that passes back an array of results. -Jason - Original Message - From: "Phil Driscoll" [EMAIL PROTECTED] To: "Chris Newbill"

Re: [PHP-DEV] feature request

2001-03-19 Thread Jason Greene
have any objection with the isset function taking multi args. -Jason --- Original Message - From: "Andi Gutmans" [EMAIL PROTECTED] To: "Jason Greene" [EMAIL PROTECTED]; "Phil Driscoll" [EMAIL PROTECTED]; "Chris Newbill" [EMAIL PROTECTED]; "Zeev Su

Re: [PHP-DEV] Re: [PHP-QA] Re: [PHP-DEV] Re: [PHP-CVS] cvs: php4(PHP_4_0_5) /sapi/fastcgi

2001-03-21 Thread Jason Greene
Though I am still considered new to this group, I thought I would put in my two cents. Are we considering fastcgi module stable? We currently release EXPERIMENTAL modules as part of the distribution. If fastcgi is considered EXPERIMENTAL, then I don't see why the module itself could not be

Re: [PHP-DEV] non-thread-safe yet pthreads-friendly build of PHP?

2001-03-27 Thread Jason Greene
I have ran into this issue many times, with the sudden system call switch between a threaded and non-threaded mode. In one scenario I had a problem where a 3rd party module (chilisoft) was linked against an so that was linked against libpthread. I had an issue where signals where not being

Re: [PHP-DEV] PHP 4.0.5 Release Midgard Problems

2001-03-30 Thread Jason Greene
IMHO, this sounds like its best for everyone, *especially* the end users of midgard and php. -Jason - Original Message - From: "James Moore" [EMAIL PROTECTED] To: "[EMAIL PROTECTED]" [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Friday, March 30, 2001 12:02 PM Subject: [PHP-DEV] PHP

[PHP-DEV] mail errors on bug form

2001-04-10 Thread Jason Greene
While updating bugs 9729, 9664, 9656, 8667, I kept getting Warning: Could not execute mail delivery program in /local/Web/sites/phpweb/bugs.php on line 637 Warning: Could not execute mail delivery program in /local/Web/sites/phpweb/bugs.php on line 638 Is anyone aware of this? -Jason --

[PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/sockets sockets.c

2001-04-10 Thread Jason Greene
PROTECTED] To: "Jason Greene" [EMAIL PROTECTED] Cc: "Jani Taskinen" [EMAIL PROTECTED]; "Sascha Schumann" [EMAIL PROTECTED]; "PHP Quality Assurance Team Mailing List" [EMAIL PROTECTED] Sent: Tuesday, April 10, 2001 12:40 PM Subject: Re: [PHP-CVS] cvs: php4 /e

Re: [PHP-DEV] always building cgi...

2001-04-11 Thread Jason Greene
i like the sound of that -jason - Original Message - From: "Stig Sther Bakken" [EMAIL PROTECTED] To: "Sascha Schumann" [EMAIL PROTECTED] Cc: "Stig Sther Bakken" [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Wednesday, April 11, 2001 1:43 PM Subject: Re: [PHP-DEV] always building cgi...

Re: [PHP-DEV] always building cgi...

2001-04-12 Thread Jason Greene
If there was some way of building the cgi with any sapi, that would be nice. PHP as a cgi is becoming more of a utility than a cgi. Is there a way to accomplish this without changing the user compile interface much? -Jason - Original Message - From: "Sascha Schumann" [EMAIL PROTECTED]

Re: [PHP-DEV] Bug #10322 Updated: Logical error in fopen-wrappers.c

2001-04-16 Thread Jason Greene
This is almost an exact copy of a patch I had submitted in October of 2000.(before I became a contributor). I wonder if it is a copy? http://marc.theaimsgroup.com/?l=php-devm=97145490702792w=2 This idea (and many others) was on hold to a cleaner redesign of safe_mode. -Jason - Original

[PHP-DEV] possible --extension-dir directive?

2001-04-16 Thread Jason Greene
Has there ever been any thought about an extension-dir directive. I don't know what everyone else thinks, but I personally get tired of /usr/local/lib/php/extensions/no-debug-whatever-zendapinum. I think just having an option to force them in /usr/local/lib/php/extensions would be great. I am

RE: [PHP-DEV] possible --extension-dir directive?

2001-04-16 Thread Jason Greene
If not this idea, what about a symbolic link for /usr/local/lib/php/extensions/current to the correct dir? - Jason - Original Message - From: "Jason Greene" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, April 16, 2001 11:10 AM Subject: [PHP-DEV] possible --ext

Re: [PHP-DEV] possible --extension-dir directive?

2001-04-16 Thread Jason Greene
Hi Stig, I changed this to /usr/local/lib/php/APISPEC in the patch Sascha reverted, but I'll put that part back. The APISPEC part should definitely be included, or we'll have a boatload of mails asking why loading module X failed. If for example some Linux distributions want to skip it

[PHP-DEV] 4.0.5 release

2001-04-23 Thread Jason Greene
JW, whats the current release schedule plans for 4.0.5, are we going to have an RC8? -Jason -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL

[PHP-DEV] Solaris gcc issues with socket.c, design change recommendation

2001-05-10 Thread Jason Greene
Sterling, I am writing you because I am assuming you are the socket module maintainer. Awhile back I put in a hack that defines the capability to use a solaris specific pragma (pragma redefine_extname), which essentially allows you to change an external name reference after compile phase,

Re: [PHP-DEV] stat/fstat

2001-05-10 Thread Jason Greene
I ran into that a long time ago, and I wondered why. I thought about changing it, but I assumed that it would break backwards compatibility. What about 4.1 though? -Jason - Original Message - From: Zeev Suraski [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, May 10, 2001 5:11

Re: [PHP-DEV] stat/fstat

2001-05-11 Thread Jason Greene
Its actually not that pretty Since the entries are in a hashtable, you have to duplicate the values, with just another key. -Jason - Original Message - From: Brian Foddy [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: Stig Sæther Bakken [EMAIL PROTECTED]; PHP Developers Mailing List

Re: [PHP-DEV] stat/fstat

2001-05-11 Thread Jason Greene
Andrei had the same suggestion, so I went ahead and added it last night. -Jason - Original Message - From: Stig Sæther Bakken [EMAIL PROTECTED] To: Zeev Suraski [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Friday, May 11, 2001 4:18 AM Subject: Re: [PHP-DEV] stat/fstat [Zeev Suraski

Re: [PHP-DEV] stat/fstat

2001-05-11 Thread Jason Greene
On Fri, 11 May 2001, Jason Greene wrote: Its actually not that pretty Since the entries are in a hashtable, you have to duplicate the values, with just another key. You could just reuse the same value with refcount++ but that means you can't use nice add_* functions, gotta use

Re: [PHP-DEV] stat/fstat

2001-05-11 Thread Jason Greene
Ah yes, I stand corrected , 13 zvals : ) -Jason - Original Message - From: Andrei Zmievski [EMAIL PROTECTED] To: Jason Greene [EMAIL PROTECTED] Cc: Jason Greene [EMAIL PROTECTED]; Brian Foddy [EMAIL PROTECTED]; [EMAIL PROTECTED]; Stig Sæther Bakken [EMAIL PROTECTED]; PHP Developers

Re: [PHP-DEV] stat/fstat

2001-05-11 Thread Jason Greene
PROTECTED] To: Andrei Zmievski [EMAIL PROTECTED] Cc: Jason Greene [EMAIL PROTECTED]; Jason Greene [EMAIL PROTECTED]; Brian Foddy [EMAIL PROTECTED]; [EMAIL PROTECTED]; Stig Sæther Bakken [EMAIL PROTECTED]; PHP Developers Mailing List [EMAIL PROTECTED] Sent: Friday, May 11, 2001 12:36 PM Subject: Re

Re: [PHP-DEV] stat/fstat

2001-05-11 Thread Jason Greene
, -Jason At 23:00 11/5/2001, Jason Greene wrote: Well, due to the great interest in memory conservation, fstat and stat are now rewritten to share the vals across multiple keys : ) So now we are saving the user 13* sizeof(zval)+sizeof(zend_mem_header).+whatever of memory : ) -Jason - Original

Re: [PHP-DEV] stat/fstat

2001-05-11 Thread Jason Greene
At 03:31 AM 5/12/01 +0300, Zeev Suraski wrote: Yikes. We were only kidding, Jason :) Well, he could have the last argument of zend_hash_update() to receive the point to inserted value and done refcount++ on that and inserted again. ;-) The only thing with that method is that I was trying

Re: [PHP-DEV] zval_copy_ctor

2001-05-11 Thread Jason Greene
zval_copy_ctor used on an array makes a reference copy of the array. Basically, it just copies all the data items in the hashtable and then adds one to the reference count for all data items. Looking at the code, it appears to not recursively copy into nested arrays. (Could be part of your

Re: [PHP-DEV] zval_copy_ctor

2001-05-11 Thread Jason Greene
Sorry, default=segfault spellcheck got me -Jason - Original Message - From: Jason Greene [EMAIL PROTECTED] To: Wez Furlong [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Friday, May 11, 2001 10:29 PM Subject: Re: [PHP-DEV] zval_copy_ctor zval_copy_ctor used on an array makes

[PHP-DEV] Re: Solaris gcc issues with socket.c, design change recommendation

2001-05-17 Thread Jason Greene
Sterling, Did you ever get a chance to read the email about the change I suggested to /ext/sockets that would improve compatibility with Solaris? -Jason -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: [PHP-DEV] mmap in php_passthru_fd in file.c ?

2001-05-18 Thread Jason Greene
Mauro et al, Solaris Internals, 5.3.8 Page Faults in Address Spaces, 5.4.1 The vnode Segment: seg_vn, 5.8 The Page Scanner This is an excelent reference, definately a favorite of mine. -Jason -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail: [EMAIL

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

2001-05-18 Thread Jason Greene
I am all for that, but don't forget filestat.c and the macro in php_filestat.h. Thanks, Jason - Original Message - From: Andi Gutmans [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, May 18, 2001 3:08 PM Subject: [PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/standard file.c I was

Re: [PHP-DEV] Fork() in php?

2001-05-21 Thread Jason Greene
I was thinking about MT in php, but the platform differences would be a nightmare. We could abstract it like perl does, though even their implementation has problems. I would like to start with process control features (fork(), signals, waitpid() etc), but I am not sure where everything

[PHP-DEV] is php dev alive

2001-06-18 Thread Jason Greene
is the list back?? -Jason -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

Re: [PHP-DEV] Fork() in php?

2001-06-18 Thread Jason Greene
Hi, When cvs comes back up checkout the new experimental module pcntl. This is experimental so don't go using this for production just yet. Thanks, -Jason - Original Message - From: Daniel Fuehrer [EMAIL PROTECTED] To: Jason Greene [EMAIL PROTECTED] Sent: Monday, June 18, 2001 5

Re: [PHP-DEV] is php dev alive

2001-06-18 Thread Jason Greene
Hell yah!!! - Original Message - From: spencer 'sporty' portee [EMAIL PROTECTED] To: Jason Greene [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Monday, June 18, 2001 3:31 PM Subject: Re: [PHP-DEV] is php dev alive yes! On Mon, Jun 18, 2001 at 03:17:59PM -0500, Jason Greene wrote

Re: [PHP-DEV] is php dev alive

2001-06-18 Thread Jason Greene
now if cvs were to come back : ) - Original Message - From: spencer 'sporty' portee [EMAIL PROTECTED] To: Jason Greene [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Monday, June 18, 2001 3:31 PM Subject: Re: [PHP-DEV] is php dev alive yes! On Mon, Jun 18, 2001 at 03:17:59PM

[PHP-DEV] pcntl's use of zend_extension API

2001-06-25 Thread Jason Greene
Andi or Zeev (Whoever has time for this), I have added an experimental process control module to cvs for fork() signals etc. In order for me to provide asynchronously safe signal handling I need to make sure that I never call the programmers php function during any of php's or Zend's

Re: [PHP-DEV] lxr.php.net

2001-07-03 Thread Jason Greene
kudos Andrei - Original Message - From: Andrei Zmievski [EMAIL PROTECTED] To: PHP Developers [EMAIL PROTECTED] Sent: Tuesday, July 03, 2001 2:37 PM Subject: [PHP-DEV] lxr.php.net lxr.php.net is back up. bonsai.php.net to follow shortly. -Andrei The church is near but the road

Re: [PHP-DEV] Reentrant C scanners for PHP

2001-07-05 Thread Jason Greene
Sascha, This looks good. Is this going to be brought into php, or is it going to remain a separate project? Thanks, Jason - Original Message - From: Sascha Schumann [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, July 05, 2001 6:08 PM Subject: [PHP-DEV] Reentrant C scanners

Re: [PHP-DEV] Bug #8135 Updated: FTP_FPUT can't use a HTTP Filepointer

2001-07-09 Thread Jason Greene
Sorry, I was half of sleep that night. The idea here is to be able to read from the fopen()'ed stream and ftp_fput() the data.. not the other way around. (Jason, READ the bug reports before closing them, also RTFM) Exaclty what manual would you like me to read, Jani? -Jason --Jani

[PHP-DEV] Libtool problem with current build process

2001-07-09 Thread Jason Greene
Sascha + Everyone, There is a current build problem with libtool where we pass -prefer-non-pic or -prefer-pic during mode=link. Since this is not a valid mode=link option it gets passed to the linker as an option. On some platforms (Sun CC), this cuases an error and aborts. I started to take a

Re: [PHP-DEV] Re: [Zend Engine 2] Re: [PHP-DEV] Re: Str enhancement, final run

2001-07-10 Thread Jason Greene
I had suggested the start end construct, but was rejected by Zeev due to performance reasons, and that nobody in the history of php has ever need this : ) -Jason - Original Message - From: Jeroen van Wolffelaar [EMAIL PROTECTED] To: Derick Rethans [EMAIL PROTECTED]; André Langhorst

Re: [PHP-DEV] Bug #11008 Updated: exit() should return an exit status if passed, not send to stdout

2001-07-17 Thread Jason Greene
Zeev, New Comment: Simply put - no, it should not. exit's optional argument is a termination message, not a shell status. Actually, if exit's argument is of type long, then the status is set. I think that since we support this functionality echoing the status code doesn't make much sense.

Re: [PHP-DEV] Moving output.c from ext/standard to main/

2001-07-20 Thread Jason Greene
It a shame that CVS doesn't have a way to handle things like this.. Are there commercial systems that can? -Jason - Original Message - From: Zeev Suraski [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, July 20, 2001 8:14 AM Subject: [PHP-DEV] Moving output.c from ext/standard to

Re: [PHP-DEV] Moving output.c from ext/standard to main/

2001-07-20 Thread Jason Greene
to main/ Jason Greene wrote: It a shame that CVS doesn't have a way to handle things like this. Are there commercial systems that can? You don't need a commercial system for this. I recently came by accident across subversion http://subversion.tigris.org/ I have yet

Re: [PHP-DEV] cvs socket extension

2001-07-23 Thread Jason Greene
Just for curiosity, did you considered implementing poll instead of select? You would not have to worry about specifying max_fd - 1. -Jason - Original Message - From: Chris Vandomelen [EMAIL PROTECTED] To: Markus Fischer [EMAIL PROTECTED] Cc: Daniel Beulshausen [EMAIL PROTECTED];

Re: [PHP-DEV] Chora installed

2001-07-26 Thread Jason Greene
I have been using Chora internally for about 2 months, and have had no issues. I highly recommend we make this the default. -Jason - Original Message - From: Rasmus Lerdorf [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, July 26, 2001 11:02 AM Subject: [PHP-DEV] Chora installed

Re: [PHP-DEV] Security Issues

2001-07-27 Thread Jason Greene
I have been watching this thread for too long and I can no longer resist commenting. If a programmer does not initialize SECURE variables properly, he is going to make far worse security decisions in his software. Next thing we are going to hear is that php does not auto TAINT check parsed

Re: [PHP-DEV] Re: The new $_GET/POST/ENV (was: Re: [PHP-CVS] cvs: php4 / NEWS...)

2001-08-08 Thread Jason Greene
- Original Message - From: Zeev Suraski [EMAIL PROTECTED] To: Jani Taskinen [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Wednesday, August 08, 2001 1:02 PM Subject: [PHP-DEV] Re: The new $_GET/POST/ENV (was: Re: [PHP-CVS] cvs: php4 / NEWS...) At 21:01 08-08-01, Jani Taskinen wrote:

Re: [PHP-DEV] Re: The new $_GET/POST/ENV (was: Re: [PHP-CVS] cvs: php4 / NEWS...)

2001-08-08 Thread Jason Greene
How about $_COULDCONTAINSHELLCODE? -jason - Original Message - From: Jani Taskinen [EMAIL PROTECTED] To: Zeev Suraski [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Wednesday, August 08, 2001 1:09 PM Subject: Re: [PHP-DEV] Re: The new $_GET/POST/ENV (was: Re: [PHP-CVS] cvs: php4 /

Re: [PHP-DEV] Re: The new $_GET/POST/ENV (was: Re: [PHP-CVS] cvs: php4 / NEWS...)

2001-08-08 Thread Jason Greene
What about using the acronyms in any combination. like $_GPC and $_GC and etc -Jason - Original Message - From: Cynic [EMAIL PROTECTED] To: Jani Taskinen [EMAIL PROTECTED] Cc: Zeev Suraski [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Wednesday, August 08, 2001 1:25 PM Subject:

Re: [PHP-DEV] Re: The new $_GET/POST/ENV (was: Re: [PHP-CVS] cvs: php4 / NEWS...)

2001-08-08 Thread Jason Greene
- Original Message - From: Zeev Suraski [EMAIL PROTECTED] To: Jason Greene [EMAIL PROTECTED] Cc: Jani Taskinen [EMAIL PROTECTED]; Cynic [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Wednesday, August 08, 2001 1:20 PM Subject: Re: [PHP-DEV] Re: The new $_GET/POST/ENV (was: Re: [PHP-CVS] cvs

Re: [PHP-DEV] PHP 4.0.7

2001-08-08 Thread Jason Greene
There is one issue with 4.0.7 that probably should be fixed before branch. The build system currently adds a libtool flag into CFLAGS whether libtool is in link or compile mode. Since this option is only valid in compile, it gets passed to the compiler. This causes a warning with gcc, but for

Re: [PHP-DEV] PHP 4.0.7

2001-08-08 Thread Jason Greene
Yes, he said the same thing to me. The prefer-pic prefer-non-pic options where added in libtool 1.4 so this issue became present as soon as we moved to 1.4 and added those options. -Jason - Original Message - From: Zeev Suraski [EMAIL PROTECTED] To: Jason Greene [EMAIL PROTECTED

Re: [PHP-DEV] PHP 4.0.7

2001-08-08 Thread Jason Greene
to libtool 1.3 and/or removed the pic options everything would work fine. Do we want to do this though? -Jason - Original Message - From: Andi Gutmans [EMAIL PROTECTED] To: Jason Greene [EMAIL PROTECTED]; [EMAIL PROTECTED]; [EMAIL PROTECTED]; Zeev Suraski [EMAIL PROTECTED] Sent: Wednesday

Re: [PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/sablot php_sablot.h

2001-08-10 Thread Jason Greene
Is this really what the goal is here? It seems like a contest to see how many times Zend can appear in the code. I think some of this stuff should be PHP_ or for things that really are engine related, perhaps ENGINE_ to at least pretend that this is a modular architecture where if someone

Re: [PHP-DEV] Console Work

2001-08-15 Thread Jason Greene
fork is already implemented, along with signals, waitpid, and all the wait.h macros in the pcntl extension. -Jason - Original Message - From: Dave Wilson [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, August 15, 2001 11:04 AM Subject: [PHP-DEV] Console Work Hi there, I'm

Re: [PHP-DEV] Console Work

2001-08-15 Thread Jason Greene
My last 'feature request' is that of either a select () ability (I see 4.0.6 has a function called select in ext/standard/file.c (and ext/sockets/???.c) but I have not played with it), or another ability to read from files / fifos / character devices in a non-blocking way. Particularly,

Re: [PHP-DEV] chroot(): _not_ safe-mode restricted?

2001-08-20 Thread Jason Greene
IMHO There is no reason to use chroot in safe_mode, and it should be disabled. As far as webservers running as root, potentially any webserver could, though you are probably right that some do by default. Think of the potential hazard of a multi-threaded webserver This is another

[PHP-DEV] Re: sysvsem extention question

2001-08-21 Thread Jason Greene
There probably should be a full implementation of semaphores in php. If you have a need for this, we should discuss exactly how it should be implemented. I will have some free time available soon, so I can start working on this. Though I have a couple other projects as well. If you would be

Re: [PHP-DEV] Re: Re: sysvsem extention question

2001-08-24 Thread Jason Greene
- Original Message - From: Chris Chabot [EMAIL PROTECTED] To: Jason Greene [EMAIL PROTECTED] Cc: Sascha Schumann [EMAIL PROTECTED]; Tom May [EMAIL PROTECTED]; [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Friday, August 24, 2001 11:30 AM Subject: Re: [PHP-DEV] Re: Re: sysvsem extention

Re: [PHP-DEV] contribute...

2001-08-27 Thread Jason Greene
Depends on what you want to do. If you want to start with bug fixes: 1. subscribe to php-dev and php-qa 2. Go through bug db, fix a bug 3. Generate a patch off of latest CVS 4. Email patch to php-dev with [PATCH] in the subject If you are developing new functionality perform steps 3 - 4. After

[PHP-DEV] ([PATCH] SOCKETS Solaris issues with gcc) socket_read issue with new api

2001-08-27 Thread Jason Greene
Sterling, We had spoke in private correspondence several months ago about Solaris compatibility problems with the sockets extension. This basically was due to #defines in Solaris's socket header files that rename all socket functions to __xnet_##function_name ie. __xnet_socket, etc... This only

Re: [PHP-DEV] ([PATCH] SOCKETS Solaris issues with gcc) socket_read issue with new api

2001-08-27 Thread Jason Greene
Forgot one thing, Let me know if you would like me to just apply this patch myself. I just thought it should be reviewed first. Thanks, Jason - Original Message - From: Jason Greene [EMAIL PROTECTED] To: [EMAIL PROTECTED]; Chris Vandomelen [EMAIL PROTECTED]; [EMAIL PROTECTED]; Daniel

Re: [PHP-DEV] [PATCH] Zend/zend_alloc.c

2001-08-28 Thread Jason Greene
I disagree with this patch. The scenario of not being able to allocate memory is a fatal error, and the only appropriate response for php is to exit. If you need other behavior use pemalloc( which calls malloc if set persistant ). -Jason - Original Message - From: Walter Franzini

[PHP-DEV] Re: [Zend Engine 2] Right/Left Shift Zero Fill operator

2001-09-10 Thread Jason Greene
- From: Andrei Zmievski [EMAIL PROTECTED] To: Andi Gutmans [EMAIL PROTECTED] Cc: Jason T. Greene [EMAIL PROTECTED]; Jason Greene [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Friday, September 07, 2001 8:22 AM Subject: Re: [Zend Engine 2] Right/Left Shift Zero Fill operator On Fri, 07 Sep 2001, Andi

[PHP-DEV] Re: [Zend Engine 2] Re: [PHP-DEV] Re: [Zend Engine 2] Right/Left Shift Zero Fill operator

2001-09-10 Thread Jason Greene
the new operator is the way to go. -Jason - Original Message - From: Alexander Wirtz [EMAIL PROTECTED] To: Jason Greene [EMAIL PROTECTED]; [EMAIL PROTECTED] Cc: [EMAIL PROTECTED]; Andrei Zmievski [EMAIL PROTECTED]; Andi Gutmans [EMAIL PROTECTED] Sent: Monday, September 10, 2001 9:56 AM

[PHP-DEV] Karma Request

2001-09-13 Thread Jason Greene
Could someone grant me some docs Karma? Thanks, -Jason -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP-DEV] Re: PHP pcntl function documentation (and other stuff)

2001-09-14 Thread Jason Greene
- Original Message - From: Daniel Beckham [EMAIL PROTECTED] To: Jason Greene [EMAIL PROTECTED] Sent: Thursday, September 13, 2001 11:38 PM Subject: Re: PHP pcntl function documentation (and other stuff) - Original Message - From: Jason Greene [EMAIL PROTECTED] To: Daniel

[PHP-DEV] Re: PHP pcntl function documentation (and other stuff)

2001-09-14 Thread Jason Greene
- Original Message - From: Daniel Beckham [EMAIL PROTECTED] To: Jason Greene [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Friday, September 14, 2001 1:49 PM Subject: Re: PHP pcntl function documentation (and other stuff) - Original Message - From: Jason Greene [EMAIL

[PHP-DEV] Re: PHP pcntl function documentation (and other stuff)

2001-09-14 Thread Jason Greene
be combined to a pcntl_wait_rusage() What do you think? -Jason - Original Message - From: Daniel Beckham [EMAIL PROTECTED] To: Jason Greene [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Friday, September 14, 2001 1:55 PM Subject: Re: PHP pcntl function documentation (and other stuff

[PHP-DEV] Doc Karma Request

2001-09-14 Thread Jason Greene
I hate to be a nag, but when someone gets a change could they add phpdoc to my access list? Thanks, -Jason -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators,

Re: [PHP-DEV] Doc Karma Request

2001-09-14 Thread Jason Greene
Oh, haha thanks I probably should have taken a look at that before asking : ) Sorry Rasmus, -Jason - Original Message - From: Rasmus Lerdorf [EMAIL PROTECTED] To: Jason Greene [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Friday, September 14, 2001 5:11 PM Subject: Re: [PHP-DEV] Doc

[PHP-DEV] Re: [Zend Engine 2] RE: [PHP-DEV] Re: [Zend Engine 2] Re: [PHP-DEV] Re: [Zend Engine 2] Re: [PHP-DEV] Re: [Zend Engine 2] namespaces ambiguity

2001-10-02 Thread Jason Greene
This easy to understand, efficient (no time consuming code to interpret whether a class was intended), no backwards compatibility issues, no ambiguity, and its not the first 3 symbol operator to hit php. a big +1 -Jason - Original Message - From: Andi Gutmans [EMAIL PROTECTED] To:

Re: [PHP-DEV] Possibility of moving bugs to another list?

2001-10-02 Thread Jason Greene
RE: [PHP-DEV] Possibility of moving bugs to another list?by that logic wouldn't email filters fragment discussion as well -Jason - Original Message - From: Robinson, Mike To: [EMAIL PROTECTED] Sent: Tuesday, October 02, 2001 10:14 AM Subject: RE: [PHP-DEV] Possibility of moving bugs

Re: [PHP-DEV] Possibility of moving bugs to another list?

2001-10-02 Thread Jason Greene
Right, To me the bug related emails overshadow the developer threads. I almost want to discuss things on the cvs list just because of this. -Jason - Original Message - From: Chris Gardner To: [EMAIL PROTECTED] Sent: Tuesday, October 02, 2001 10:23 AM Subject: Re: [PHP-DEV] Possibility

Re: [PHP-DEV] Possibility of moving bugs to another list?

2001-10-02 Thread Jason Greene
haha, good point, well I would ..really I would.. : ) Seriously though, I think it would categorize things a bit better... -Jason - Original Message - From: Andrei Zmievski [EMAIL PROTECTED] To: Chris Gardner [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Tuesday, October 02,

  1   2   >