Re: [PHP-DEV] filepaths, uris, safemode, etc..

2003-09-30 Thread Rob Richards
From: Wez Furlong > > You'll probably want to check if the path is a URI or local path first; > the > > streams code checks for :// to make this decision. I loaded the soap extension and now run into an issue (though streams now work in dom without having to touch it). xmlRegisterInputCallbacks i

[PHP-DEV] filepaths, uris, safemode, etc..

2003-09-30 Thread Wez Furlong
free to reuse the code I > added to pecl/soap: > http://cvs.php.net/diff.php/pecl/soap/php_xml.c?r1=1.5&r2=1.6&ty=u > http://cvs.php.net/diff.php/pecl/soap/soap.c?r1=1.15&r2=1.16&ty=u > > --Wez. > > > - Original Message - > From: "R

[PHP-DEV] filepaths, uris, safemode, etc..

2003-09-30 Thread Rob Richards
Within the dom extension, I am trying to resolve an issue with uris and local filepaths which are passed to libxml. When I get the filepath, I need to resolve any local filepaths to an absoulte path. On top of this the safemode checks need to be done before passing any of these to libxml. So far