[PHP-DEV] sapi_spache2.c + 4.2.0

2002-04-05 Thread Doug MacEachern
httpd-2.0 folks are pushing for GA, in order for apache2filter to compile revisionn 1.63 of sapi/apache2filter/sapi_apache2.c needs to be included in 4.2.0 (or next RC, whichever comes first). can somebody merge 1.63 changes into the 4.2.0 branch? -- PHP Development Mailing List

[PHP-DEV] more 1.3 vs 2.0 differences

2001-12-05 Thread Doug MacEachern
- apache_lookup_uri with the apache 2.0 module returns an array rather than a class. any objections to making it behave the the 1.3 based module? - the 2.0 getallheaders lets the authorization header through whereas 1.3 does: PG(safe_mode) && !strncasecmp(tenv[i].key, "authorization", 13) - the

[PHP-DEV] virtual vs apache_sub_req

2001-12-05 Thread Doug MacEachern
any reason why the 2.0 version shouldn't be the same name as the 1.3 version? same with get_all_headers vs getallheaders Index: sapi/apache2filter/php_functions.c === RCS file: /repository/php4/sapi/apache2filter/php_functions.c,v r

Re: [PHP-DEV] fwd: buildconf troubles

2001-10-03 Thread Doug MacEachern
On Mon, 17 Sep 2001, Hartmut Holzgraefe wrote: > on one of the boxes everything worked fine again after > commenting out the DLOPEN_SELF stuff in Zend/Zend.m4 > while the other one still gives lots of "undefined macros" i tried this, all "undefined macros" go away and php is building for me agai

[PHP-DEV] fwd: buildconf troubles

2001-09-16 Thread Doug MacEachern
still stuck on this with current cvs, anybody else seeing this? >From [EMAIL PROTECTED] Thu Aug 30 09:47:20 2001 -0700 Status: X-Status: X-Keywords: Date: Thu, 30 Aug 2001 09:47:20 -0700 (PDT) From: Doug MacEachern <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: buildconf trouble

[PHP-DEV] buildconf troubles

2001-08-30 Thread Doug MacEachern
i've done a fresh checkout and having problems building, below is the output from buildconf. % autoconf --version Autoconf version 2.13 % libtool --version ltmain.sh (GNU libtool) 1.4 (1.920 2001/04/24 23:26:18) any ideas? % ./buildconf rebuilding Makefile templates rebuilding configure autocon

[PHP-DEV] generated ChangeLog

2001-08-29 Thread Doug MacEachern
is the script for generating the ChangeLog available somewhere? very cool, would like to use it for modperl-2.0 and httpd-test projects. thanks. -- PHP Development Mailing List To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To

[PHP-DEV] ext/standard/html.c breakage

2001-08-23 Thread Doug MacEachern
one the php tests (tests/strings/003.phpt) that has been ported to httpd-test is failing with current cvs: \"&åÄ\n"); echo htmlentities ("<>\"&åÄ\n"); ?> the 'echo htmlspecialchars ...' does not echo anything. problem seems to be caused by this change: 2001-08-23 Wez Furlong <[EMAIL PROTECTED

[PHP-DEV] [patch] php_insert_filter

2001-08-19 Thread Doug MacEachern
with the patch below, the 1.x configuration: AddType application/x-httpd-php .php will also work with 2.0, without the extra config that is currently required: SetOutputFilter PHP SetInputFilter PHP Index: sapi/apache2filter/sapi_apache2.c

[PHP-DEV] [patch] don't filter proxy requests

2001-08-19 Thread Doug MacEachern
if mod_proxy+ProxyPass are enabled, php will try to filter the output of proxy requests for *.php files. patch below prevents that.. Index: sapi/apache2filter/sapi_apache2.c === RCS file: /repository/php4/sapi/apache2filter/sapi_apa

Re: [PHP-DEV] another segv in sapi_apache2

2001-08-17 Thread Doug MacEachern
thanks. this one gets rid of a warning... Index: sapi_apache2.c === RCS file: /repository/php4/sapi/apache2filter/sapi_apache2.c,v retrieving revision 1.45 diff -u -r1.45 sapi_apache2.c --- sapi_apache2.c 18 Aug 2001 01:36:29 -

[PHP-DEV] another segv in sapi_apache2

2001-08-17 Thread Doug MacEachern
doesn't seem right for this flush function to be called at server shutdown, ctx->f and ctx->f->r won't be alive at this point. so i'm not sure if this is the right fix, but patch below stops segv. with this and the cleanup_register patch bloom committed for me, all php tests in httpd-test are no

[PHP-DEV] php_dl() and absolute filenames

2001-02-08 Thread Doug MacEachern
4.0.4p1's php_dl() function uses a default extension_dir by default, which breaks if the filename is absolute. older versions did not have this problem (without the default extension_dir). Index: ext/standard/dl.c === RCS file: /var