Re: [PHP-DEV] Bug #13378 Updated: Auto session start + obejct

2001-12-20 Thread Teodor Cimpoesu
Hi derick! On Thu, 20 Dec 2001, [EMAIL PROTECTED] wrote: > ID: 13378 > Updated by: derick > Reported By: [EMAIL PROTECTED] > Old Status: Open > Status: Closed > Bug Type: Feature/Change Request > Operating System: Linux > PHP Version: 4.0.6 > New Comment: > > This is already implemented, we have

[PHP-DEV] [pico-diff] Apache2filter compile

2002-01-22 Thread Teodor Cimpoesu
To get it to compile I had to do: --- sapi_apache2.c.orig Sun Jan 20 20:50:40 2002 +++ sapi_apache2.c Mon Jan 21 12:39:48 2002 @@ -249,14 +249,14 @@ TSRMLS_FETCH(); if (f->r->proxyreq) { - return ap_get_brigade(f->next, bb, mode, block, readbytes); +

Re: [PHP-DEV] Bug #13871: 'for()'-error using chars as break

2001-10-30 Thread Teodor Cimpoesu
Hi Martin.Schmitz! On Tue, 30 Oct 2001, [EMAIL PROTECTED] wrote: > From: [EMAIL PROTECTED] > Operating system: Linux > PHP version: 4.0.6 > PHP Bug Type: *Programming Data Structures > Bug description: 'for()'-error using chars as break > > > for($i='A'; $i<='Z'; $i++){

Re: [PHP-DEV] Re: Wow ! Good news (to me at least) ...

2001-11-09 Thread Teodor Cimpoesu
Hi August! On Thu, 08 Nov 2001, August Zajonc wrote: > Why not the GPL? > Because it's viral nature? :) -- teodor -- PHP Development Mailing List To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrat

[PHP-DEV] Apache2 debugging

2001-11-20 Thread Teodor Cimpoesu
Hi, the README sais to set an environ var (or least I undestood so) in order to debug it, but actually you have to define it (using -D on command line) for it to work. The change would be: --- sapi/apache2filter/README.orig Tue Nov 20 13:39:56 2001 +++ sapi/apache2filter/RE

Re: [PHP-DEV] CGI quick cleanup

2001-11-23 Thread Teodor Cimpoesu
Hi Edin! On Fri, 23 Nov 2001, Edin Kadribasic wrote: > I have noticed the same problem with a scipt that used a very large array > (~160 MB). The script run time was around 35 seconds, while it took over 4 > minutes to shut down! Same amount of time was used in trying to unset() the > array. [wi

Re: [PHP-DEV] Bug #14248: uniqid() is extremely slow (20ms per call)

2001-11-27 Thread Teodor Cimpoesu
Hi bartvb! On Tue, 27 Nov 2001, [EMAIL PROTECTED] wrote: > From: [EMAIL PROTECTED] > Operating system: Linux 2.4.13-ac5 > PHP version: 4.0.5 > PHP Bug Type: Unknown/Other Function > Bug description: uniqid() is extremely slow (20ms per call) > > A call to uniqid() seems to

Re: [PHP-DEV] Feature Request: add HTML 4.01 support into DOMXML extension?

2001-12-06 Thread Teodor Cimpoesu
Hi Jaroslaw! On Wed, 05 Dec 2001, Jaroslaw Kolakowski wrote: > > But, even if we don't agree with his opinion on templates, what about > > the features that libxml provides which are currently unused by PHP, > > including HTML 4.01-support (I don't know exactly what libxml can do)? > > Are the

Re: [PHP-DEV] uhm.. *swallows*.. security thingy?

2001-12-12 Thread Teodor Cimpoesu
Hi Zeev! On Tue, 11 Dec 2001, Zeev Suraski wrote: > At 15:23 11/12/2001, Mathieu Kooiman wrote: > >On Tue, 2001-12-11 at 14:04, Zeev Suraski wrote: > >> At 12:36 11/12/2001, Mathieu Kooiman wrote: > >> >On Tue, 2001-12-11 at 11:29, Zeev Suraski wrote: > >> > > Would the cwd of the PHP CGI be insi

Re: [PHP-DEV] Bug #14489 Updated: DSO PHP module compiling with gettext support is blocking Apache start

2001-12-13 Thread Teodor Cimpoesu
Hi misch! On Thu, 13 Dec 2001, [EMAIL PROTECTED] wrote: > ID: 14489 > User updated by: [EMAIL PROTECTED] > Reported By: [EMAIL PROTECTED] > Status: Open > Bug Type: Apache related > Operating System: Cobalt Raq 3 > PHP Version: 4.1.0 > New Comment: > > I forgot this : > > Apache/1.3.6 (Unix) >

Re: [PHP-DEV] Bug #14492: Parse error is appearing in transliterated Hebrew T_PAAMAYIM_NEKUDOTAYIM

2001-12-14 Thread Teodor Cimpoesu
Hi esrig! On Thu, 13 Dec 2001, [EMAIL PROTECTED] wrote: > From: [EMAIL PROTECTED] > Operating system: Linux > PHP version: 4.1.0 > PHP Bug Type: *Languages/Translation > Bug description: Parse error is appearing in transliterated Hebrew >T_PAAMAYIM_NEKUDOTAYIM > > I left o

[PHP-DEV] Small change in Apache2

2002-02-28 Thread Teodor Cimpoesu
Hi, Apache 2.0.32 changed the prototype of ap_get_brigade. To make php4.1.2 compile w/ it I had to do: --- sapi_apache2.c.orig Thu Feb 28 15:52:54 2002 +++ sapi_apache2.c Thu Feb 28 15:53:03 2002 @@ -244,7 +244,7 @@ INIT_CTX; - if ((rv = ap_get_brigade(f->next, bb, mode, re

[PHP-DEV] Re: [PHP] Session, register_globals, $HTTP_SESSION_VARS???

2001-01-17 Thread Teodor Cimpoesu
Hi Andrew! On Wed, 17 Jan 2001, Andrew Sitnikov wrote: > Hello , > > sess.php > $var_name = 'TEST_VAR'; > > session_register($var_name); > > if (isset($HTTP_SESSION_VARS[$var_name])){ >$HTTP_SESSION_VARS[$var_name] ++; > }else{ >$HTTP_SESSION_VARS[$var_name] = 0; > } > > echo "

Re: [PHP-DEV] popen() on Win32

2001-01-21 Thread Teodor Cimpoesu
Andi Gutmans wrote: > > Hey, > > A couple of guys here said they are working on creating a popen() > alternative solution for Win32. > Any progress? > I remembered I wanted to suggest you to take a look on how it is implemented in Python. Their docs state: """ popen (command[, mode[, bufsize]]