|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-10-30 15:08 UTC] vulture at consult-scs dot com
[2002-10-31 05:40 UTC] msopacua@php.net
[2002-11-01 19:39 UTC] msopacua@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Nov 04 22:00:01 2025 UTC |
Sablot 0.96 and expat 1.95 installed php-4.2.3: ./configure --enable-xslt --with-xslt-sablot --with-mysql --with-imap --with-apxs2=/usr/local/apache2/bin/apxs --with-expat=/usr/local --with-gettext --with-xml --with-mcrypt --enable-ftp --with-tsrm-pth Problem: When using xslt_process and a arg:xxx, any xslt document() calls will point to arg:(and what was in the document call) Example xsl sheet code: <xsl:apply-templates select="document('/websites/xxx/htdocs/xml/messages.xml')//message[@id='nf-comp']/text[@xml:lang='en']"/> would attempt to open: arg:/websites/xxx/htdocs/xml/messages.xml If I call the xsl sheet in from a file then it worked fine. Origanal Code/Syntax Used: <? $xh = xslt_create(); // set xml file to be used with translation $xmlfile=$GLOBALS["DOCUMENT_ROOT"]."/xml/product.xml"; // load dynamic xsl sheet to be used with translation $xslstyle="http://".$GLOBALS["SERVER_NAME"]."/styles/product-detail.php?id=".$GLOBALS["HTTP_GET_VARS"]["id"]; $fp = fopen($xslstyle, "r"); $xsltdata["xsldata"]=fread($fp, 500000); fclose($fp); // do the translation $result = xslt_process($xh, $xmlfile, 'arg:xsldata', NULL, $xsltdata); ?> Fix I used to get around this: add this line after $xh = xslt_create(); xslt_set_base($xh, "file:///"); Working Code: <? $xh = xslt_create(); // Added to fix trying to open arg:(and the file name) xslt_set_base($xh, "file:///"); // End Added // set xml file to be used with translation $xmlfile=$GLOBALS["DOCUMENT_ROOT"]."/xml/product.xml"; // load dynamic xsl sheet to be used with translation $xslstyle="http://".$GLOBALS["SERVER_NAME"]."/styles/product-detail.php?id=".$GLOBALS["HTTP_GET_VARS"]["id"]; $fp = fopen($xslstyle, "r"); $xsltdata["xsldata"]=fread($fp, 500000); fclose($fp); // do the translation $result = xslt_process($xh, $xmlfile, 'arg:xsldata', NULL, $xsltdata); ?>