hey,
I've got apache 1.3.22 and php 4.1.0 with xml and xls (sablotron and expat)working on windows 2000 but there is something strange.
My ServerRoot is C:\program files\apachegroup\apache and my documentroot is D:\www\ when i put this script
test.php
$xsltproc = xslt_create();
$html = xslt_process($xsltproc,'docbook.xml','docbook.xsl');
if (!$html) die('XSLT processing error: '.xslt_error($xsltproc));
xslt_free($xsltproc);
echo $html;
and when i try tot load test.php it says
Warning Sablotron error on line 37 cannot open file' c:/program files/apachegroup/apache/docbook.xml'
when i try to set the location of xslt_process($xsltproc,'docbook.xml','docbook.xsl');
to something like
xslt_process($xsltproc,'D:/www/docbook.xml','docbook.xsl');
it generates an illegal character error
if i put my docbook.xml and docbook.xls in
c:/program files/apachegroup/apache/
it works perfectly !!
but i don't want that i want them in d:\www !
does anybody have any idea how to solve this problem.