Re: [PHP-DEV] a patch for making a webdav server work

2002-08-19 Thread Rasmus Lerdorf
Yeah, they are. That's why they are on a branch and haven't really gone anywhere. They are destabilizing and I don't have the free time required to integrate them and test them properly at this point. -Rasmus On Mon, 19 Aug 2002, Wez Furlong wrote: > The apache_hooks looks like it's a lot mor

Re: [PHP-DEV] a patch for making a webdav server work

2002-08-19 Thread Wez Furlong
The apache_hooks looks like it's a lot more involved than your nice and simple patch. Your patch looks good to me, although I'm not an apache guru. I wouldn't have any objections to applying it to HEAD and having it in 4.3. --Wez. On 08/19/02, "Wez Furlong" <[EMAIL PROTECTED]> wrote: > I think

Re: [PHP-DEV] a patch for making a webdav server work

2002-08-19 Thread Christian Stocker
On Mon, 19 Aug 2002, Rasmus Lerdorf wrote: > > nope. OPTIONS is not handled at all by PHP at the moment, therefore i made > > this change with accept_options (OPTIONS is explicitely blocked right > > now). The other primitives which have POST data (see > > http://asg.web.cmu.edu/rfc/rfc2518.html

Re: [PHP-DEV] a patch for making a webdav server work

2002-08-19 Thread Rasmus Lerdorf
> nope. OPTIONS is not handled at all by PHP at the moment, therefore i made > this change with accept_options (OPTIONS is explicitely blocked right > now). The other primitives which have POST data (see > http://asg.web.cmu.edu/rfc/rfc2518.html for the details) > > PROPFIND > PROPPATCH > PUT > MO

Re: [PHP-DEV] a patch for making a webdav server work

2002-08-19 Thread Christian Stocker
On Mon, 19 Aug 2002, Rasmus Lerdorf wrote: > Well, the stuff I did in the apache_hooks branch shows how you can hook > into other stages of the request chain and, for example, define a PHP > script to be called at the url translation stage or the auth stage. The > latter would allow you to perfo

Re: [PHP-DEV] a patch for making a webdav server work

2002-08-19 Thread Rasmus Lerdorf
Well, the stuff I did in the apache_hooks branch shows how you can hook into other stages of the request chain and, for example, define a PHP script to be called at the url translation stage or the auth stage. The latter would allow you to perform PHP-based auth on all files, not just PHP files,

Re: [PHP-DEV] a patch for making a webdav server work

2002-08-19 Thread Wez Furlong
Hi Christian, I'm interested in this, so that I can export a virtual filesystem from a big web application. I think Rasmus did some work on something in CVS in a branch called APACHE_HOOKS or something; it we do integrate your patch, it's probably worth combining your work with that code. --Wez

[PHP-DEV] a patch for making a webdav server work

2002-08-19 Thread Christian Stocker
Hi I started coding a WebDAV Server in userlan php. Unfortunately it needs patching of the PHP-Sources, 'cause php does not accept http OPTIONS and HTTP_RAW_POST_DATA for other http-directives than POST, which a WebDAV server needs. The patch can be found at http://trash.chregu.tv/webdav.diff (a