Hi all,
I upgared my php from 4.0.6 to 4.10.
I was using sablotron as the xsl processor.
I compiled php-4.10 with --enable-xslt --with-xslt-sablot.
The same code running under php-4.0.6 giving errors in php-4.1.0 ( is there a impatibility ).
The error message is:
Warning: Supplied argument is not a valid XSLT Processor resource
The error giving code is :
if (xslt_process($xslData, $xmlData, $result)) {
echo $result;
} else {
echo "There was an error that occurred in the XSL transformation...\n";
echo "\tError number: " . xslt_errno() . "\n";
echo "\tError string: " . xslt_error() . "\n";
exit;
}