[PHP-DEV] Re: [PHP-CVS] cvs: php-src(PHP_5_2) /ext/standard/tests/file

2007-08-09 Thread Stanislav Malyshev
The problem is that PHP's chdir() in ZTS doesn't really do chdir(), 'cause it would affect whole process. So mkstemp() creates temp files in cwd of the process, not cwd of the thread. I'd say this is a bug. We should try and keep meaning of "." consistent as much as we can. -- Stanislav Maly

Re: [PHP-DEV] PHP-taint update

2007-08-09 Thread Guilherme Blanco
Hi, It seems you had an interesting idea, but AFAIK it'll not incorporated in core by PHP Team. Yeah, sounds bad, but you cannot simply turn all variables into objects and try to get them. Seems you're trying something like that: $_GET['foo']->asString(); // echo: Bar This will never happen, PH

[PHP-DEV] PHP-taint update

2007-08-09 Thread Wietse Venema
Late last year I started a discussion on this list with a proposal to add Perl/Ruby-like taint support to PHP - a feature that a developer may turn on to find out where to insert explicit cleaning operations to avoid code injection etc. vulnerabilities. With applications that are explicitly writte

Re: [PHP-DEV] php5 as universal binary (Mac OS X)

2007-08-09 Thread Christian Speich
hey, i try to test it and report then here :) kleinweby Am 09.08.2007 um 18:03 schrieb Uwe Schindler: Hi Antony, the problem is that my VMWare-patched MacOSX is corrupt. I have to reinstall it and also install XCode. And my "official Mac" is a PowerPc one that cannot create universal bin

RE: [PHP-DEV] php5 as universal binary (Mac OS X)

2007-08-09 Thread Uwe Schindler
Hi Antony, the problem is that my VMWare-patched MacOSX is corrupt. I have to reinstall it and also install XCode. And my "official Mac" is a PowerPc one that cannot create universal binaries. It could be better for a fast answer to ask the person (Christian Speich) who originally asked for help t

Re: [PHP-DEV] Getting Windows exec to work better.

2007-08-09 Thread Tim Starling
Richard Quadling wrote: On 09/08/07, Nuno Lopes <[EMAIL PROTECTED]> wrote: Things are not that simple. I would advise you to read a more than one year thread about the very same subject: http://marc.info/?l=php-dev&m=113919491216978 Ok. Thanks for the link. I have read similar notes

Re: [PHP-DEV] Getting Windows exec to work better.

2007-08-09 Thread Richard Quadling
On 09/08/07, Nuno Lopes <[EMAIL PROTECTED]> wrote: > Things are not that simple. > I would advise you to read a more than one year thread about the very same > subject: http://marc.info/?l=php-dev&m=113919491216978 > > Nuno > > > - Original Message - > From: "Richard Quadling" <[EMAIL PROTE

Re: [PHP-DEV] Getting Windows exec to work better.

2007-08-09 Thread Nuno Lopes
Things are not that simple. I would advise you to read a more than one year thread about the very same subject: http://marc.info/?l=php-dev&m=113919491216978 Nuno - Original Message - From: "Richard Quadling" <[EMAIL PROTECTED]> To: "PHP Developers Mailing List" Sent: Thursday, Aug

Re: [PHP-DEV] php5 as universal binary (Mac OS X)

2007-08-09 Thread Antony Dovgal
Uwe, could you plz test this patch? http://dev.daylessday.org/diff/macos_uni.diff Thanks. On 27.07.2007 16:21, Uwe Schindler wrote: On http://developer.apple.com/documentation/Porting/Conceptual/PortingUnix/comp iling/chapter_4_section_3.html Apple states: -- Wbr, Antony Dovgal -- PHP Int

[PHP-DEV] Getting Windows exec to work better.

2007-08-09 Thread Richard Quadling
Hi. http://bugs.php.net/bug.php?id=25361 I supplied a patch to fix this bug. The issue is NOT a PHP bug, but a "that's how it is on windows" issue. On *nix, if you want to exec a program via PHP whose program name or parameters contain spaces, do you need to use a pair of double quotes around t