ID: 20177
User updated by: [EMAIL PROTECTED]
Reported By: [EMAIL PROTECTED]
Status: Open
Bug Type: XSLT related
Operating System: FreeBSD 4.7
PHP Version: 4.2.3
New Comment:
Using Apache 2.0.43
Previous Comments:
------------------------------------------------------------------------
[2002-10-30 15:04:38] [EMAIL PROTECTED]
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);
?>
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=20177&edit=1