Re: Problem with XSLT importStyleSheet

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On 3/28/07, Timothy Murphy <tim@xxxxxxxxxxxxxxxxxxxxxx> wrote:

I've been trying to use PHP/XSLT on my desktop,
running Fedora-6 Linux (with all current updates).
The function importStyleSheet() seems to cause
a Segmentation Violation, as eg in the following script from
http://ie2.php.net/manual/en/function.xsl-xsltprocessor-construct.php
--------------------------------
// Example 2520. Creating an XSLTProcessor

<?php

$doc = new DOMDocument();
$xsl = new XSLTProcessor();

$doc->load($xsl_filename);
$xsl->importStyleSheet($doc);

$doc->load($xml_filename);
echo $xsl->transformToXML($doc);

?>
--------------------------------
[root@alfred Test]# php ex2520.php
// Example 2520. Creating an XSLTProcessor
Segmentation fault
--------------------------------

Or this script from
http://www.phpbuilder.com/manual/en/function.xsl-xsltprocessor-transform-to-xml.php
--------------------------------
<?php

$xsl = new DOMDocument('1.0','UTF-8');
$xml = new DOMDocument('1.0','UTF-8');

$xml->loadXML('collection.xml');
$xsl->loadXML('collection.xsl');
$xsl->documentURI = 'collection.xsl';

$xslProc = new XSLTProcessor();
$xslProc->importStyleSheet($xsl);

?>
--------------------------------
[root@alfred Test]# php test29.php
Segmentation fault
--------------------------------

I'd be very grateful if someone could check if these scripts work for you,
so I can see if it is a problem with Fedora PHP, or with PHP itself,
(or if I am doing something silly, which is quite probable).

I have no problem with testing, i'm running home-made linux system
with PHP5 & PHP6 (Apache). Also running PHP5 under windows (Apache).

Just need an example XSL/XML file to test:) Could you send one?
(Off-list maybe because attachments are giving trouble sometimes on
this list)

Tijnema


--
Timothy Murphy
e-mail (<80k only): tim /at/ birdsnest.maths.tcd.ie
tel: +353-86-2336090, +353-1-2842366
s-mail: School of Mathematics, Trinity College, Dublin 2, Ireland

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux