Re: [PHP-DEV] MFH policy

2003-02-20 Thread Corne' Cornelius
Marcus Börger wrote: At 17:38 19.02.2003, Marc Boeren wrote: Hi, What is the official MFH policy? Are all bugfixes MFH-ed? Normally, yes. Except when we're close to release (which we are not right now). How does this work? Add -r PHP_4_3 to the mfh-commit? Cheerio, Marc. If

Re: [PHP-DEV] MFH policy

2003-02-20 Thread Derick Rethans
On Thu, 20 Feb 2003, Corne' Cornelius wrote: Pardon my ignorance, but what is MFH ? Merge From Head Derick -- Stop mad cowboy disease! - Derick Rethans

Re: [PHP-DEV] Jumadi

2003-02-20 Thread Hartmut Holzgraefe
[EMAIL PROTECTED] wrote: Only one question: why not change the name of this mailing list ??? Only a idea. it is already advertised as Internals list A medium volume list for those who want to help out with the development of PHP on http://www.php.net/mailing-lists.php, so maybe changing

[PHP-DEV] php_test_results_20030220.txt

2003-02-20 Thread Mueller . Udo
= FAILED TEST SUMMARY - File type functions [ext/standard/tests/file/001.phpt] Bug #21131: fopen($filename, a+) has broken position

Re: [PHP-DEV] Current HEAD segfaults with Horde/CHORA

2003-02-20 Thread Derick Rethans
On Tue, 11 Feb 2003, David Brown wrote: Hi Derick: Sorry about leaving php-dev off of the Cc - your reply didn't make it back to the php-dev list, though you did indeed respond. :) A couple of followup questions: 1. The crashes I'm able to catch with ?php function a(){a();}a(); ?

Re: [PHP-DEV] Jumadi

2003-02-20 Thread Jani Taskinen
Just make this one moderated. (but allow anyone with CVS access to post freely :) --Jani On Thu, 20 Feb 2003, Hartmut Holzgraefe wrote: [EMAIL PROTECTED] wrote: Only one question: why not change the name of this mailing list ??? Only a idea. it is already advertised

[PHP-DEV] zend_timeout and the SIGPROF signal

2003-02-20 Thread Jeremy Mullin
I have a question in regards to page timeouts and how the initial request is terminated. First, I apologize up front for my ignorance. I am not a php user, rather a database developer who has customers using php. I've noticed if a query takes longer than the default 30 seconds to execute, php

Re: [PHP-DEV] zend_timeout and the SIGPROF signal

2003-02-20 Thread wmeler
I have a question in regards to page timeouts and how the initial I've noticed if a query takes longer than the default 30 seconds to execute, php returns a timeout message to the user. From what I can tell, php uses the SIGPROF signal to stop execution when the 30 seconds has expired.

Re: [PHP-DEV] zend_timeout and the SIGPROF signal

2003-02-20 Thread Zeev Suraski
On timeout, the engine will call zend_bailout(), which performs a longjmp(). It does unwind the stack, but since we're dealing with C and not C++ and there are no destructors, it's your responsibility to clean after yourself. You can do it by properly registering your resources with PHP's

Re: [PHP-DEV] zend_timeout and the SIGPROF signal

2003-02-20 Thread wmeler
- Original Message - On timeout, the engine will call zend_bailout(), which performs a longjmp(). It does unwind the stack, but since we're dealing with C and not C++ and there are no destructors, it's your responsibility to clean after yourself. You can do it by properly

Re: [PHP-DEV] zend_timeout and the SIGPROF signal

2003-02-20 Thread Zeev Suraski
At 17:05 20/02/2003, [EMAIL PROTECTED] wrote: - Original Message - On timeout, the engine will call zend_bailout(), which performs a longjmp(). It does unwind the stack, but since we're dealing with C and not C++ and there are no destructors, it's your responsibility to clean after

RE: [PHP-DEV] zend_timeout and the SIGPROF signal

2003-02-20 Thread Jeremy Mullin
Don't call malloc? Wow, that puts some serious restrictions on what an external library can do. :) Couldn't drivers be required to implement something like SQLCancel in ODBC? A mechanism that lets the driver processing the request cancel the query nicely? -Original Message- From: Zeev

RE: [PHP-DEV] zend_timeout and the SIGPROF signal

2003-02-20 Thread Zeev Suraski
At 17:20 20/02/2003, Jeremy Mullin wrote: Don't call malloc? Wow, that puts some serious restrictions on what an external library can do. :) In the code that you control, obviously. Couldn't drivers be required to implement something like SQLCancel in ODBC? A mechanism that lets the driver

[PHP-DEV] CVS Account Request: laacz

2003-02-20 Thread Kaspars Foigts
Translating the documentation into Latvian. -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] zend_timeout and the SIGPROF signal

2003-02-20 Thread Zeev Suraski
At 16:58 20/02/2003, [EMAIL PROTECTED] wrote: I have a question in regards to page timeouts and how the initial I've noticed if a query takes longer than the default 30 seconds to execute, php returns a timeout message to the user. From what I can tell, php uses the SIGPROF signal to stop

Re: [PHP-DEV] zend_timeout and the SIGPROF signal

2003-02-20 Thread wmeler
- Original Message - I looked into the bug report, and it is true that BLOCK_INTERRUPTIONS should indeed block SIGPROF. I'll fix this in the weekend. I'm not sure if after unblocking interruptions PHP will get SIGPROF ... it could cause long scripts. I'd rather use EG(timeout).

Re: [PHP-DEV] zend_timeout and the SIGPROF signal

2003-02-20 Thread Zeev Suraski
At 17:38 20/02/2003, [EMAIL PROTECTED] wrote: - Original Message - I looked into the bug report, and it is true that BLOCK_INTERRUPTIONS should indeed block SIGPROF. I'll fix this in the weekend. I'm not sure if after unblocking interruptions PHP will get SIGPROF ... it could cause

RE: [PHP-DEV] Jumadi

2003-02-20 Thread Mike Robinson
You could charge $100 per php licence too. :P Regards Mike Robinson Jani Taskinen wrote: Just make this one moderated. (but allow anyone with CVS access to post freely :) --Jani -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit:

Re: [PHP-DEV] zend_timeout and the SIGPROF signal

2003-02-20 Thread Wojtek Meler
On Thu, Feb 20, 2003 at 05:48:29PM +0200, Zeev Suraski wrote: At 17:38 20/02/2003, [EMAIL PROTECTED] wrote: - Original Message - I looked into the bug report, and it is true that BLOCK_INTERRUPTIONS should indeed block SIGPROF. I'll fix this in the weekend. I'm not sure if

Re: [PHP-DEV] zend_timeout and the SIGPROF signal

2003-02-20 Thread Thies C. Arntzen
On Thu, Feb 20, 2003 at 05:11:55PM +0100, Wojtek Meler wrote: On Thu, Feb 20, 2003 at 05:48:29PM +0200, Zeev Suraski wrote: At 17:38 20/02/2003, [EMAIL PROTECTED] wrote: - Original Message - I looked into the bug report, and it is true that BLOCK_INTERRUPTIONS should

Re: [PHP-DEV] Jumadi

2003-02-20 Thread Sebastian Bergmann
Jani Taskinen wrote: Just make this one moderated. (but allow anyone with CVS access to post freely :) That sounds like a very good idea. -- Sebastian Bergmann http://sebastian-bergmann.de/ http://phpOpenTracker.de/ Did I help you? Consider a gift:

[PHP-DEV] file_put_contents() / file_add_contents() ?

2003-02-20 Thread Sara Golemon
I recall a discussion sometime back about making file_put_contents() (create a file and write the provided contents to it in one command) and file_add_contents() (like put but append rather than overwrite) to complement file_get_contents() but looking in HEAD I don't see either put or add. Was it

[PHP-DEV] [PATCH] imagesavealpha()

2003-02-20 Thread Jukka Holappa
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, I have reported at http://bugs.php.net/?id=22323 that it's impossible to actually create png images that are partially transparent. I needed that feature yesterday so I have created a patch (attached - mailer mangles patches) for this. This

Re: [PHP-DEV] [PATCH] imagesavealpha()

2003-02-20 Thread Tal Peer
On Thu, 20 Feb 2003, Jukka Holappa wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, I have reported at http://bugs.php.net/?id=22323 that it's impossible to actually create png images that are partially transparent. I needed that feature yesterday so I have created a patch

[PHP-DEV] Sorry for the silly Q

2003-02-20 Thread Louwtjie
Please accept my apology for the silly question. Louwtjie Taljaard _ Services: * IT Security Consulting * Systems Management * Systems Administration * HP / IBM / Sun / SGI / Cisco Operations * Software Web Presence Development _ Looking for love in all the wrong

Re: [PHP-DEV] file_put_contents() / file_add_contents() ?

2003-02-20 Thread Jani Taskinen
On Thu, 20 Feb 2003, Sara Golemon wrote: I recall a discussion sometime back about making file_put_contents() (create a file and write the provided contents to it in one command) and file_add_contents() (like put but append rather than overwrite) to complement file_get_contents() but looking in

[PHP-DEV] Jumadi

2003-02-20 Thread if01024
if we an administrator, and if we want to give limited acces to the other user, axample: if we have 12 computer which connect to internet, but this computer and we have users which can use this computer and if we want to give them limited size to acces internet, example username amanda, we give

Re: [PHP-DEV] file_put_contents() / file_add_contents() ?

2003-02-20 Thread Ilia A.
On February 20, 2003 02:51 pm, Sara Golemon wrote: Was it decided not to create these? Yes Is it simply a matter of noone having gotten around to it? Yes Am I paying too much attention to the voices in my head? Maybe ;) Joking aside, I do have a patch to implement the mentioned

Re: [PHP-DEV] file_put_contents() / file_add_contents() ?

2003-02-20 Thread Jani Taskinen
I object! :) It should be one function with extra parameter to decide the action.. And named 'file_write_content()'. And counterpart being 'file_read_content()'. --Jani On Thu, 20 Feb 2003, Ilia A. wrote: On February 20, 2003 02:51 pm, Sara Golemon wrote:

Re: [PHP-DEV] [PATCH] imagesavealpha()

2003-02-20 Thread Pierre-Alain Joye
On Thu, 20 Feb 2003 22:17:48 +0200 Jukka Holappa [EMAIL PROTECTED] wrote: It sounds good, I will run tests today and commit it to the HEAD. Thank's pierre -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP-DEV] [PATCH] imagesavealpha()

2003-02-20 Thread Steven Brown
-Original Message- From: Pierre-Alain Joye [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 20, 2003 9:02 PM To: Jukka Holappa Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Re: [PHP-DEV] [PATCH] imagesavealpha() On Thu, 20 Feb 2003 22:17:48 +0200 Jukka Holappa [EMAIL

Re: [PHP-DEV] [PATCH] imagesavealpha()

2003-02-20 Thread Jukka Holappa
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Steven Brown wrote: I sent in a patch on 1/2/2003 to fix various issues blocking use of transparent truecolor PNGs in PHP and its bundled libgd that included adding imagesavealpha() to PHP, did my patch fall out of the loop? I've attached the

RE: [PHP-DEV] [PATCH] imagesavealpha()

2003-02-20 Thread Steven Brown
-Original Message- From: Jukka Holappa [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 20, 2003 10:06 PM To: Steven Brown Cc: 'Pierre-Alain Joye'; [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Re: [PHP-DEV] [PATCH] imagesavealpha() -BEGIN PGP SIGNED MESSAGE- Hash:

Re: [PHP-DEV] Jumadi

2003-02-20 Thread Wojtek Meler
On Thu, Feb 20, 2003 at 06:21:27PM +0100, Sebastian Bergmann wrote: Jani Taskinen wrote: Just make this one moderated. (but allow anyone with CVS access to post freely :) That sounds like a very good idea. great idea, that would stop this annoying CVS account request messages ;) Wojtek

Re: [PHP-DEV] Jumadi

2003-02-20 Thread Marcus Börger
At 08:04 21.02.2003, Wojtek Meler wrote: On Thu, Feb 20, 2003 at 06:21:27PM +0100, Sebastian Bergmann wrote: Jani Taskinen wrote: Just make this one moderated. (but allow anyone with CVS access to post freely :) That sounds like a very good idea. great idea, that would stop this