Re: [PHP-DEV] need directions adding a func.

2002-11-21 Thread Derick Rethans
disappeared somewhere. Anyone heard from him?) He is at ApacheCon in las Vegas, might be just too busy. Derick -- --- Derick Rethans http://derickrethans.nl/ JDI Media Solutions

Re: [PHP-DEV] leak() crash()

2002-11-20 Thread Derick Rethans
not compiling in debug mode. Derick -- --- Derick Rethans http://derickrethans.nl/ JDI Media Solutions --[ if you hold a unix shell to your ear, do you hear the c? ]- -- PHP

Re: [PHP-DEV] GIF support

2002-11-20 Thread Derick Rethans
anyone started on this before, then I would like to know about it. I could give it a go myself, but would rather not start from scratch. There is an extension for that in PEAR/PECL: http://cvs.php.net/cvs.php/pear/PECL/imagick?login=2 and one for imlib: http://mmcc.cx/php_imlib/ Derick

[PHP-DEV] Re: [Zend Engine 2] Re: [PHP-DEV] leak() crash()

2002-11-20 Thread Derick Rethans
On Wed, 20 Nov 2002, Andi Gutmans wrote: At 02:04 PM 11/20/2002 +0100, Derick Rethans wrote: On Tue, 19 Nov 2002, Marcus Börger wrote: As far as i can tell from the source there is ZEND_TEST_EXCEPTIONS to guard crash() but leak() isa allways there. Without debug leak() doesn't report

RE: [PHP-DEV] error handling

2002-11-20 Thread Derick Rethans
who thinks IIS rulez fixes the ISAPI module. If that doesn't work correctly nobody should use it at all. Derick -- --- Derick Rethans http://derickrethans.nl/ JDI Media Solutions

RE: [PHP-DEV] error handling

2002-11-20 Thread Derick Rethans
this kind of obfucsication. Derick -- --- Derick Rethans http://derickrethans.nl/ JDI Media Solutions --[ if you hold a unix shell to your ear, do you hear the c? ]- -- PHP

Re: [PHP-DEV] [PATCH] php4/win32/install.txt

2002-11-19 Thread Derick Rethans
! -- --- Derick Rethans http://derickrethans.nl/ JDI Media Solutions --[ if you hold a unix shell to your ear, do you hear the c? ]- -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http

RE: [PHP-DEV] Just a little question (sidenote)

2002-11-19 Thread Derick Rethans
, as a string in PHP is an continuues range of bytes, and not an array of 'character' zvals. Reference can only be made to zvals internally. Derick -- --- Derick Rethans http

Re: [PHP-DEV] Re: is_*

2002-11-19 Thread Derick Rethans
On Thu, 14 Nov 2002 [EMAIL PROTECTED] wrote: What about making FALIASES so it can be found in is_*? Really easier for newbies. We generally don't want to clutter our function namespaces with aliases UNLESS there is a very good reason for. Derick

Re: [PHP-DEV] leak()

2002-11-19 Thread Derick Rethans
*/ ZEND_FUNCTION(leak) { int leakbytes=3; zval **leak; if (ZEND_NUM_ARGS()=1) { if (zend_get_parameters_ex(1, leak)==SUCCESS) { convert_to_long_ex(leak); leakbytes = (*leak)-value.lval; } } emalloc(leakbytes); } /* }}} */ Derick

Re: [PHP-DEV] leak()

2002-11-19 Thread Derick Rethans
On Tue, 19 Nov 2002, Juerg Zgraggen wrote: hi derick thanx for answering... do i understand it right? this function is used for generating a memory leak which you want to test? Yes it is. and whats about this function emalloc() ... i did not find it on php.net. i suppose it is used

RE: [PHP-DEV] error handling

2002-11-18 Thread Derick Rethans
error. And this can never be supported safely, as a parse error leaves the parse in an unstable state. Also, I really don't think that we should try to add hacks to make this possible. Derick -- --- Derick Rethans

RE: [PHP-DEV] error handling

2002-11-18 Thread Derick Rethans
if the custom error handler also errors) or toward Mattia's suggestion? Both? I'm not totally sure what you mean with when the custom error handler also has errors. Can you elaborate? (and can you please use for quoting mail?) Derick

RE: [PHP-DEV] error handling

2002-11-18 Thread Derick Rethans
parsed fully and thus the compilation step did not even interpreted the tokens generated by the parse, so how do you want PHP to execute a function then? Derick -- --- Derick Rethans

Re: [PHP-DEV] Re: #20461 [Opn-Bgs]: Unable to access $PHP_AUTH_USERor $PHP_AUTH_PW

2002-11-18 Thread Derick Rethans
no security consequences and the information is awailable elsewhere ($_SERVER['REMOTE_USER']). $PHP_AUTH_PW should be set when there are no safe_mode/open_basedir restrctions in effects. Would this solution be satisfactory to everyone? Perfectly fine with me. Derick

Re: [PHP-DEV] error handling

2002-11-18 Thread Derick Rethans
like this patch because it doesn't add anything to PHP itself. You can easily do this with the error_prepend_string and error_append_string configuration settings. Derick -- --- Derick Rethans

Re: [PHP-DEV] getimagesize() broken in HEAD

2002-11-18 Thread Derick Rethans
=1.72r2=1.73ty=h Derick -- --- Derick Rethans http://derickrethans.nl/ JDI Media Solutions --[ if you hold a unix shell to your ear, do you hear the c? ]- -- PHP

RE: [PHP-DEV] error handling

2002-11-18 Thread Derick Rethans
of the error handler script then shouldn't The engine be capiable of executing that script upon an error somewhere else? That can be done, but I don't like this. You should not have any parse errors in your code anyway, so it just should fail as hard as possible. Derick

Re: [PHP-DEV] [PATH] update to earlier proposed patch for getanyrr()function addition

2002-11-18 Thread Derick Rethans
On Mon, 18 Nov 2002, Melvyn Sopacua wrote: At 07:52 18-11-2002, Derick Rethans wrote: On Mon, 18 Nov 2002, Marcus Börger wrote: I don't think so. It is only a small extension to the functionality we have already. If there would be more functionality to add during the next release

Re: [PHP-DEV] error handling

2002-11-18 Thread Derick Rethans
On Mon, 18 Nov 2002, Kjartan Mannes wrote: Monday, November 18, 2002, 11:23:08 AM, Derick Rethans wrote: That can be done, but I don't like this. You should not have any parse errors in your code anyway, so it just should fail as hard as possible. Can't argue with that, however (;)), I

Re: [PHP-DEV] GD segfault in 4.3.0RC1

2002-11-18 Thread Derick Rethans
On Mon, 18 Nov 2002, Brian Havard wrote: Derick Rethans wrote: On Sun, 17 Nov 2002, Derick Rethans wrote: On Sun, 17 Nov 2002, Brian Havard wrote: When trying out the RC1 code I found that my GD test segfaults every time. I traced the problem to the fact that efree is used

Re: [PHP-DEV] GD segfault in 4.3.0RC1

2002-11-18 Thread Derick Rethans
not to emalloc data that should be preserved accross requests. That's why I've a patch read to remove the e*() stuff for the branch so that we have a lot of time for the 4.4/5.0 version to check all these things out. regards, Derick

Re: [PHP-DEV] error handling

2002-11-18 Thread Derick Rethans
On Mon, 18 Nov 2002, Melvyn Sopacua wrote: At 11:39 18-11-2002, Derick Rethans wrote: [...] Or a more general command to verify PHP code php_valid($code_str). That way the people who expect parse errors in their include files can do $code_str(implode(, file(include.inc

RE: [PHP-DEV] error handling

2002-11-18 Thread Derick Rethans
in PHP without us having to bother with the problems surrounding a bad parser-state... I stil see not why you would want to handle PARSE errors gracefully. If a user has broken code it should not even be on a production box. Bad code - dead site. Derick

RE: [PHP-DEV] error handling

2002-11-18 Thread Derick Rethans
and there was actually a E_PARSE constant... Now I'm just confused as to what the heck your talkin' about Derick :) hmm, I really thought we didn't have one, as it doesn't make sense at all :) I stil see not why you would want to handle PARSE errors gracefully. If a user has broken code

Re: [PHP-DEV] problem with GPL code in PHP4

2002-11-18 Thread Derick Rethans
very little original code, so I think we can just remove that GPL thing, and rand.c is not GPL afaics. Derick -- --- Derick Rethans http://derickrethans.nl/ JDI Media Solutions

Re: [PHP-DEV] problem with GPL code in PHP4

2002-11-18 Thread Derick Rethans
On Mon, 18 Nov 2002, Rasmus Lerdorf wrote: Well, he is talking about the Mersenne Twister code in rand.c. The is a GPL reference in that. (search for GNU) Ah, right, missed that. Derick -- --- Derick Rethans

Re: [PHP-DEV] problem with GPL code in PHP4

2002-11-18 Thread Derick Rethans
On Mon, 18 Nov 2002, Henri Gomez wrote: In 4.2.2 source I'm reading from, the MT RAND functions are marked as GPL (and you know that any single piece of GPL in a code base make it GPLized ;) Somebody which rewrites this code will pop-up soon :) Derick

Re: [PHP-DEV] problem with GPL code in PHP4

2002-11-18 Thread Derick Rethans
On Mon, 18 Nov 2002, Harrie Hazewinkel wrote: On Monday, November 18, 2002, at 04:35 PM, Derick Rethans wrote: On Mon, 18 Nov 2002, Henri Gomez wrote: Hi to all, I take a look at PHP4 license information, I see that PHP4 is licensed under an Apache Style license. I see

Re: [PHP-DEV] problem with GPL code in PHP4

2002-11-18 Thread Derick Rethans
On Mon, 18 Nov 2002, Marcus Börger wrote: At 17:36 18.11.2002, Harrie Hazewinkel wrote: On Monday, November 18, 2002, at 04:35 PM, Derick Rethans wrote: On Mon, 18 Nov 2002, Henri Gomez wrote: Hi to all, I take a look at PHP4 license information, I see that PHP4 is licensed under

Re: [PHP-DEV] leak() crash()

2002-11-18 Thread Derick Rethans
On Tue, 19 Nov 2002, Marcus Börger wrote: Shouldn't leak() and crash() be disabled or without functionality for normal use and instead have to be enabled with a configure option? --enable-debug is this switch AFAIK. Derick

Re: [PHP-DEV] [PATH] update to earlier proposed patch for getanyrr()function addition

2002-11-17 Thread Derick Rethans
(like res_mkquery, dn_expand) which might not exist on all platforms. regards, Derick Marcus Börger [EMAIL PROTECTED] a écrit dans le message de news: [EMAIL PROTECTED] Function is nice but the function name is not. Attached is a second revised patch that fixes the build problems. marcus

Re: [PHP-DEV] GD segfault in 4.3.0RC1

2002-11-17 Thread Derick Rethans
happening when gdhelpers.c was changed to use emalloc etc in r1.3. Thanks, I'll check the whole source for strdup now. Derick -- --- Derick Rethans http://derickrethans.nl/ JDI Media

Re: [PHP-DEV] GD segfault in 4.3.0RC1

2002-11-17 Thread Derick Rethans
On Sun, 17 Nov 2002, Derick Rethans wrote: On Sun, 17 Nov 2002, Brian Havard wrote: When trying out the RC1 code I found that my GD test segfaults every time. I traced the problem to the fact that efree is used on memory that was allocated with strdup. See the fontlist variable

Re: [PHP-DEV] [PATH] update to earlier proposed patch for getanyrr()function addition

2002-11-17 Thread Derick Rethans
was something like this: dns_get_record(php.net, DNS_MX); and of course having all the other DNS_* records defined as constant in PHP. We can then also wrap the original getmxrr() function to use this new function. Derick At 12:38 17.11.2002, Derick Rethans wrote: On Sun, 17 Nov 2002

Re: [PHP-DEV] [PATH] update to earlier proposed patch for getanyrr()function addition

2002-11-17 Thread Derick Rethans
On Sun, 17 Nov 2002, Marcus Börger wrote: Sure but anyway we would need to review the config file if everything we need is in place. uhm, what config file? Derick At 14:54 17.11.2002, Derick Rethans wrote: On Sun, 17 Nov 2002, Marcus Börger wrote: I could do the autoconf stuff and i

Re: Oops: [PHP-DEV] Updated getanyrr.patch, now dns_getrecord.patch

2002-11-17 Thread Derick Rethans
right: Hmm, empty attachments are indeed easy to apply :-) I think you forgot it. Derick -- --- Derick Rethans http://derickrethans.nl/ JDI Media Solutions --[ if you hold

Re: [PHP-DEV] [PATH] update to earlier proposed patch for getanyrr()function addition

2002-11-17 Thread Derick Rethans
On Sun, 17 Nov 2002, Marcus Börger wrote: I guessed we'd have to look into ext/standard/config.m4 for that new functionality. Ah, of course. Derick At 16:19 17.11.2002, Derick Rethans wrote: On Sun, 17 Nov 2002, Marcus Börger wrote: Sure but anyway we would need to review

Re: Oops: [PHP-DEV] Updated getanyrr.patch, now dns_getrecord.patch

2002-11-17 Thread Derick Rethans
On Sun, 17 Nov 2002, Pollita wrote: *sigh* shoot me billy I'll shoot you again then :) Still nothing ... Derick -- --- Derick Rethans http://derickrethans.nl/ JDI Media

Re: [PHP-DEV] Re: #20461 [Opn-Bgs]: Unable to access $PHP_AUTH_USERor $PHP_AUTH_PW

2002-11-17 Thread Derick Rethans
documented that it shouldn't work. Do we really have to make a feature out of every bug? I'd say no... Derick ID: 20461 Updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] -Status: Open +Status: Bogus Bug Type: Apache

Re: [PHP-DEV] [PATCH] php4/configure.in.patch php4/ext/standard/dns_get_record.patch

2002-11-17 Thread Derick Rethans
this back: array(2) { [A]= [MX]= } I think that would be the most useful API. Derick -- --- Derick Rethans http://derickrethans.nl/ JDI Media Solutions --[ if you

Re: [PHP-DEV] [PATH] update to earlier proposed patch for getanyrr()function addition

2002-11-17 Thread Derick Rethans
functions for now, IMO it doesn't warrant a new extention yet. Derick -- --- Derick Rethans http://derickrethans.nl/ JDI Media Solutions --[ if you hold a unix shell to your ear

Re: [PHP-DEV] Re: #20461 [Opn-Bgs]: Unable to access $PHP_AUTH_USERor $PHP_AUTH_PW

2002-11-17 Thread Derick Rethans
On Sun, 17 Nov 2002, Rasmus Lerdorf wrote: On Mon, 18 Nov 2002, Derick Rethans wrote: On Sun, 17 Nov 2002, Rasmus Lerdorf wrote: I'm still not overly convinced that this isn't a restriction that should only kick in when safe_mode or open_basedir is active. This change is going

Re: [PHP-DEV] Re: [PATCH]s New Function getanyrr() proposal

2002-11-16 Thread Derick Rethans
for that. Derick Pollita [EMAIL PROTECTED] a écrit dans le message de news: [EMAIL PROTECTED] The three attached patch files (to be applied in ext/standard/ ) introduce a new function: getanyrr(). Where the existing getmxrr() will retrieve MX records for a given host, getanyrr() will return all

Re: [PHP-DEV] Re: php4 / configure.in /main php_version.h

2002-11-15 Thread Derick Rethans
? I'm a bit concerned about 5.0 lingering for too long. You can see how 4.3 has lingered. It's just a number... but I also think we should head for 5.0.0-dev now. Derick -- --- Derick Rethans

Re: [PHP-DEV] [PHP-QA] Test results (fwd)

2002-11-15 Thread Derick Rethans
On Fri, 15 Nov 2002, Marcus Börger wrote: Locking does not work in db but now dba is a full superset. So i won't use db. That's why i am for moving db to pecl maybe we could print an endnote to configure saying db is deprecated? I'm +1 on that, lets's see what the list things. Derick

Re: [PHP-DEV] 4.2.3 mbstring patch?

2002-11-14 Thread Derick Rethans
be visible then. Derick -- --- Derick Rethans http://derickrethans.nl/ JDI Media Solutions --[ if you hold a unix shell to your ear, do you hear the c? ]- -- PHP Development

Re: [PHP-DEV] [PHP-QA] Test results (fwd)

2002-11-14 Thread Derick Rethans
). Derick At 19:52 13.11.2002, Derick Rethans wrote: -- Forwarded message -- Date: 13 Nov 2002 18:32:03 - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: [PHP-QA] Test results /opt

Re: [PHP-DEV] PHP 4.3 ToDo

2002-11-14 Thread Derick Rethans
, but the trial fix for this has broken persistent connections for everyone. :( I've been discussing this with the maintainer of the module, Georg, and he'll discuss it with the other maintainer, Zak. It's likely that this is indeed removed. Derick

RE: [PHP-DEV] GD 2.0.6 make errors

2002-11-14 Thread Derick Rethans
using... backtrace as follows (couldn't get a core file). It clearly crashes in the gid stuff... most likely the zlib version against which gd was build does not match the zlib against PHP was linked. But I really dont think you should be asking for support, as this is a hacked up GD. Derick

RE: [PHP-DEV] show_source()

2002-11-14 Thread Derick Rethans
://marc.theaimsgroup.com/?l=php-devm=103190697430631w=2 http://marc.theaimsgroup.com/?l=php-devm=103260607216272w=2 Derick -- --- Derick Rethans http://derickrethans.nl/ JDI Media Solutions

Re: [PHP-DEV] prototypes for getters and setters.

2002-11-13 Thread Derick Rethans
.; +1 Plus, another syntax suggestion (coming in closer to Delphi): I'm -1 on these klugdes, as the overload functionality works fine IMO. Derick -- --- Derick Rethans http

Re: [PHP-DEV] brain damage in the gd ext [was: Re: [PHP-DEV] GDversion available in script ?]

2002-11-12 Thread Derick Rethans
of bogus PRs doesn't justify the breakage it forces into one's code. Could someone please fix this? I thought I fixed all of this some months ago already... Will have a look. Derick -- --- Derick Rethans

Re: [PHP-DEV] brain damage in the gd ext [was: Re: [PHP-DEV] GDversion available in script ?]

2002-11-12 Thread Derick Rethans
On Tue, 12 Nov 2002, Derick Rethans wrote: On Tue, 12 Nov 2002, Roman Neuhauser wrote: Everyone: the fact that e. g. imagecreatefromgif() exists no matter what, throwing a warning if you have a wrong GD version is IMNSHO utterly dumb. The fact that it limits the number

Re: [PHP-DEV] Stepping on range()

2002-11-12 Thread Derick Rethans
this until after the release. Documentation updates will accompany with the commit. I like this, but I think it's a good idea to wait with committing until 4.3.0 has been branched. Derick -- --- Derick Rethans

Re: [PHP-DEV] [RFC] gd, imagefilter

2002-11-12 Thread Derick Rethans
]-function(INTERNAL_FUNCTION_PARAMETERS); which can return errors and stuff just like a normal functon can do. regards, Derick PS.: This is from mind, might not work :-) Derick -- --- Derick Rethans

[PHP-DEV] Re: #20395 [Opn-Csd]: A handful of #ifdef's to compile under AIXusing xlC

2002-11-12 Thread Derick Rethans
-12 New Comment: I dont think it's a bug. Please take this to php.dev. Nicos, if you have little knowlegde about a specific bugreport, please don't assume things and add bogus comments. Derick -- --- Derick Rethans

Re: [PHP-DEV] [RFC] gd, imagefilter

2002-11-12 Thread Derick Rethans
On Tue, 12 Nov 2002, Pierre-Alain Joye wrote: Hello, That's it :) I did not find a sample privat function, now I do. For the ML archive, here is how to do it: On Tue, 12 Nov 2002 17:48:08 +0100 (CET) Derick Rethans [EMAIL PROTECTED] wrote: typedef image_filter { void

Re: [PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/snmp CREDITS php_snmp.hsnmp.c

2002-11-12 Thread Derick Rethans
functions). Anyway, where would be the function name guide lines on the website. I cannot find it and a pointer would be appreciated. See the CODING_STANDARDS file in the root of the php4/ CVS module. Derick

Re: [PHP-DEV] mbstring and 4.3.0

2002-11-12 Thread Derick Rethans
it. That does not mean test it. We think it works . uhm, I don't think it works stable enough. Derick -- --- Derick Rethans http://derickrethans.nl/ JDI Media Solutions

Re: [PHP-DEV] mbstring and 4.3.0

2002-11-12 Thread Derick Rethans
developers' fault. It doesn't really matter who's fault it was, it's a fact that the mbstring module caused this fuckup. Derick -- --- Derick Rethans http://derickrethans.nl/ JDI Media

Re: [PHP-DEV] mbstring and 4.3.0

2002-11-12 Thread Derick Rethans
developers? For me it was the wide stream of bugreports coming in; can't speak for the others though. Derick -- --- Derick Rethans http://derickrethans.nl/ JDI Media Solutions

Re: [PHP-DEV] PHP Update practices?

2002-11-11 Thread Derick Rethans
ideal way would be to get your own dedicated box and let them upgrade it when _you_ ask for it). regards, Derick -- --- Derick Rethans http://derickrethans.nl/ JDI Media Solutions

[PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/snmp CREDITS php_snmp.h snmp.c

2002-11-11 Thread Derick Rethans
follow the PHP standards, I think we should definitely come up with better names. Derick -- --- Derick Rethans http://derickrethans.nl/ JDI Media Solutions --[ if you hold

Re: [PHP-DEV] PHP Snaps

2002-11-11 Thread Derick Rethans
On Tue, 12 Nov 2002, Edin Kadribasic wrote: Any objections to changing timestamp timezone on source snaps to UTC? Windows snapshots are already using it. Would be nice to have... Derick -- --- Derick Rethans

[PHP-DEV] Re: [Zend Engine 2] Errors and exceptions?

2002-11-11 Thread Derick Rethans
other 'philosiphies' then others. Getting this all nice and clean is another point we should address in PHP 5 (just like Stig mentioned). Derick -- --- Derick Rethans http

Re: [PHP-DEV] turning strlen() into an opcode

2002-11-10 Thread Derick Rethans
On Sat, 9 Nov 2002, George Schlossnagle wrote: Hehe. I should attach the patch, eh? Yes, you should... but you still didn't do that :-) Derick -- --- Derick Rethans http

Re: [PHP-DEV] [PATCH] Proposed modification to log() in ext/standard/math.c

2002-11-10 Thread Derick Rethans
to the coding standards as described in the CODING_STANDARDS file. regards, Derick -- --- Derick Rethans http://derickrethans.nl/ JDI Media Solutions --[ if you hold a unix shell

Re: [PHP-DEV] ZEND_ADD_STRING patch

2002-11-10 Thread Derick Rethans
after variable in certain cases, but it works for me. hmm, your MUA is getting senile :) no attachment... Derick -- --- Derick Rethans http://derickrethans.nl/ JDI Media Solutions

Re: [PHP-DEV] Return -1

2002-11-09 Thread Derick Rethans
it and give users more headaches. Sure, consistency is nice, but IMO not worth it to break BC. Derick -- --- Derick Rethans http://derickrethans.nl/ JDI Media Solutions --[ if you hold

Re: [PHP-DEV] [PATCH] Fix for bug #19566

2002-11-08 Thread Derick Rethans
the whitespace :) Derick cvs -z3 -q diff zend_hash.c (in directory S:\php4-HEAD\Zend\) Index: zend_hash.c === RCS file: /repository/ZendEngine2/zend_hash.c,v retrieving revision 1.93 diff -u -r1.93 zend_hash.c --- zend_hash.c 5 Nov

Re: [PHP-DEV] CyberMut and SPPLUS

2002-11-07 Thread Derick Rethans
this. Because both are only useful for very few people they should go into pear/PECL, which _is_ for C extensions. No need to bloat the PHP source with those. Derick -- --- Derick Rethans http

Re: [PHP-DEV] mbstring and 4.3.0

2002-11-07 Thread Derick Rethans
or want not make it a core component such as ext/standard we should enable it by default. If people want it they can use --enable-mbstring. I see no reason why it should be enabled by default as long as it's not fully integrated in the core. Derick

[PHP-DEV] test, just ignore

2002-11-07 Thread Derick Rethans
-- --- Derick Rethans http://derickrethans.nl/ JDI Media Solutions http://www.jdimedia.nl

Re: [PHP-DEV] Compile PHP-CODE

2002-11-07 Thread Derick Rethans
anybody know about the possibilities of compliling the php source code * Extra points if you know where that butchered quote comes from! :) Ferris Bueller's Day Off :) Derick -- --- Derick Rethans

[PHP-DEV] Re: [PATCH] run-tests.php

2002-11-01 Thread Derick Rethans
On Fri, 1 Nov 2002, Melvyn Sopacua wrote: Hi, attached a patch: 1) To get the right compiler version (see php-qa thread on this) 2) Add option to save results, by Michael Mauch [EMAIL PROTECTED] Any objections? We can't object if there is no attachment :) Derick

[PHP-DEV] Segfault when an error message is displayed during shutdown

2002-11-01 Thread Derick Rethans
=0xbacc) at ../sysdeps/generic/libc-start.c:129 Derick -- --- Derick Rethans http://derickrethans.nl/ JDI Media Solutions http://www.jdimedia.nl

Re: [PHP-DEV] Re: [PATCH] run-tests.php

2002-11-01 Thread Derick Rethans
On Fri, 1 Nov 2002, Melvyn Sopacua wrote: At 15:37 1-11-2002, Derick Rethans wrote: Any objections? We can't object if there is no attachment :) ?php while($i100) { echo substr('#*!$%', mt_rand(1,6), 1); $i++; } ? Looks fine to me. Derick

RE: [PHP-DEV] Re: [PATCH] run-tests.php

2002-11-01 Thread Derick Rethans
far)... Well, I'm just worried your patch will end up disappearing :( IMO the new script should not be used to QA PHP 4.x, but it should be replace it when we're heading for 5. It's really getting a bitch to make sure the testscript stays stable anyway. Derick

Re: [PHP-DEV] hebrew patch for jewish calendar

2002-10-31 Thread Derick Rethans
with it? (Please see README.TESTING after you did an update of your tree (the file was recently modified) on how to write them. regards, Derick Derick Rethans [EMAIL PROTECTED] wrote in message news:Pine.LNX.4.44.0210302118180.5024-10;jdi.jdimedia.nl... On Wed, 30 Oct 2002, moshe doron

[PHP-DEV] Strange problem with INI settings

2002-10-31 Thread Derick Rethans
/main.c, line 748 it is reset to 1 somehow. (This is during the shutdown of the memory manager). Do you have any idea how this setting could have been reset? regards, Derick -- --- Derick Rethans

Re: [PHP-DEV] Re: cvs: php4 / Makefile.global run-tests.php

2002-10-31 Thread Derick Rethans
On Thu, 31 Oct 2002, Yasuo Ohgaki wrote: Derick Rethans wrote: derick Thu Oct 31 09:02:00 2002 EDT Modified files: /php4 Makefile.global run-tests.php Log: Discuss first! Huh? What do you mean discuss first? There is discussion

[PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/calendar calendar.c jewish.c sdncal.h

2002-10-31 Thread Derick Rethans
. Derick -- --- Derick Rethans http://derickrethans.nl/ JDI Media Solutions --[ if you hold a unix shell to your ear, do you hear the c? ]- -- PHP Development Mailing List http

Re: [PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/calendar calendar.cjewish.c sdncal.h

2002-10-31 Thread Derick Rethans
On Thu, 31 Oct 2002, Andrei Zmievski wrote: On Thu, 31 Oct 2002, Derick Rethans wrote: A crap, yes... fixing README.CVS-RULES right away. Umm... should stay there. Just don't use it until 4.3.0 is out. Yeah, it's there again... Derick

Re: [PHP-DEV] Re: cvs: php4 / Makefile.global

2002-10-30 Thread Derick Rethans
-tests.php script. Derick -- --- Derick Rethans http://derickrethans.nl/ JDI Media Solutions --[ if you hold a unix shell to your ear, do you hear the c? ]- -- PHP Development

Re: [PHP-DEV] Re: cvs: php4 / Makefile.global

2002-10-30 Thread Derick Rethans
. (But we adapted the same reasoning for that anyway). Derick -- --- Derick Rethans http://derickrethans.nl/ JDI Media Solutions --[ if you hold a unix shell to your ear, do you

Re: [PHP-DEV] hebrew patch for jewish calendar

2002-10-30 Thread Derick Rethans
On Wed, 30 Oct 2002, moshe doron wrote: well 2.3 dayes left, i tried asking some ppl on mail doing that change but didnt got response. can some1 else (may u derick) did it? I can if I receive the patch in a normal form. Derick Derick Rethans [EMAIL PROTECTED] wrote in message

Re: [PHP-DEV] I hope this is the last email about this :)

2002-10-29 Thread Derick Rethans
On Tue, 29 Oct 2002, Yasuo Ohgaki wrote: Derick Rethans wrote: On Tue, 29 Oct 2002, Yasuo Ohgaki wrote: There is no need. Derick has been changed it w/o discussion. Nice joke :) Don't you forget I've posted I'll change it? I get reply only from you, though. Old code was bogus

Re: [PHP-DEV] Re: [PHP-DOC] Apache 2 installation instructions

2002-10-29 Thread Derick Rethans
not to do this, I'm just pointing out how this can be perceived. We can't change the fact that they simply lie about it. But wording it like Apache and PHP are not to be used in production environments should not produce flames from the apache people I think :) Derick

Re: [PHP-DEV] RFC: run-tests.php errors/warnings

2002-10-29 Thread Derick Rethans
. log_errors might go everywhere... cli shows them to stderr by default iirc., I'm all for display_errors=1 too. Derick -- --- Derick Rethans http://derickrethans.nl/ JDI Media Solutions

Re: [PHP-DEV] html_error related to phpinfo() output

2002-10-29 Thread Derick Rethans
On Tue, 29 Oct 2002, Steve Alberty wrote: why result the functions phpinfo() and phpcredits() as plain text when i set the html_error = Off. I think this is not the correct behavior, or not? It is the correct behavior. Derick

Re: [PHP-DEV] html_error related to phpinfo() output

2002-10-29 Thread Derick Rethans
On Tue, 29 Oct 2002, Zeev Suraski wrote: Shouldn't there be different settings? People may very well want html errors off, but still keep the rest of PHP 'web enabled'... I was just stating that it was meant like this, if it should be like this is another question :) Derick

Re: [PHP-DEV] html_error related to phpinfo() output

2002-10-29 Thread Derick Rethans
existing global than add new? :) This doesn't need to be any ini-setting, IMO. Only CLI needs this. +1 on that. Derick -- --- Derick Rethans http://derickrethans.nl/ JDI

[PHP-DEV] Re: [PHP-DOC] Re: [PHP-DEV] Re: [PHP-DOC] Apache 2 installationinstructions

2002-10-29 Thread Derick Rethans
don't blame any of the two projects. Derick -- --- Derick Rethans http://derickrethans.nl/ JDI Media Solutions --[ if you hold a unix shell to your ear, do you hear the c

Re: [PHP-DEV] functions in time.c

2002-10-29 Thread Derick Rethans
On Tue, 29 Oct 2002, Marcus Boerger wrote: Shouldn't microtime and gettimeofday be unavailable when HAVE_GETTIMEOFDAY is undefined? IMO they should indeed not be available in that case. Derick -- --- Derick Rethans

Re: [PHP-DEV] hebrew patch for jewish calendar

2002-10-28 Thread Derick Rethans
Hello, Can you please send the patch as attachment? Derick On Mon, 28 Oct 2002, moshe doron wrote: i patched the jdtojewish() function to return the symbolic hebrew data (i.e. ëá çùåï äúùñâ) by second optional parameter. could some1 commit that please? thnxs moshe. begin

Re: [PHP-DEV] hebrew patch for jewish calendar

2002-10-28 Thread Derick Rethans
On Mon, 28 Oct 2002, moshe doron wrote: i did it (1.txt) Still no attachment but everything inline. Your mailer is apparently so braindead to include it inline. I want to bet it's Outlook... Derick -- --- Derick

Re: [PHP-DEV] Removing of PHP_INI_PERDIR proposed (Was: settingPHP_INI_SYSTEM config. variables in VHost sections (bug 20009))

2002-10-28 Thread Derick Rethans
On 28 Oct 2002, Matus fantomas Uhlar wrote: Either nobody read it, ot nobody has any comments. Could then PHP_INI_PERDIR be removed and all settings moved to PHP_INI_SYSTEM or PHP_INI_USER ? Removed? /me bangs head against wall Derick

Re: [PHP-DEV] I hope this is the last email about this :)

2002-10-28 Thread Derick Rethans
: +10.5 Please revert. Already done myself a few days ago. Derick -- --- Derick Rethans http://derickrethans.nl/ JDI Media Solutions --[ if you hold

Re: [PHP-DEV] php4.3.0-pre2 - win32 binaries

2002-10-28 Thread Derick Rethans
Please do NOT use non-offical binaries for testing! Windows binaries will be posted soon. Derick On Mon, 28 Oct 2002 [EMAIL PROTECTED] wrote: anyone can download for testing php-4.3.0-pre2 from: http://chat.italma.ru/php/ (compiled with vc++.net) -- PHP Development Mailing List

<    1   2   3   4   5   6   7   8   9   10   >