Hi,
I'm new to this list and im trying to run php with expat and sablot on linux
2.2.14 SuSE6.4., apache 1.3.19, php 4.0.4, expat 1.95.1, sablot 0.51
php runs, expat runs, sablot :(
using this script:
1 <?php
2 // XSLT Prozessor erzeugen
3 $xslt_processor = xslt_create();
4
5 // Transformierung durchf�hren
6 $result = xslt_run($xslt_processor,'artikel.xsl',
'artikel.xml');
7 // �berpr�fen, ob ein Fehler aufgetreten ist
8 if(!$result) echo xslt_error($xslt_processor);
9
10 // Ergebnis der Transformation ausgeben
11 print xslt_fetch_result($xslt_processor);
12
13 // Vom XSLT Prozessor belegten Speicher
14 xslt_free($xslt_processor);
?>
i get this error messages:
Fatal error: msgtype: error in line 6
lin
i get OK if i comment this line out. Any ideas, do i have to compile the whole
stuff again, does the apache need an extra module?
i configured php module like this:
'./configure' '--with-xml' '--with-mysql' '--with-apxs=/usr/local/apache/bin/apxs'
'--with-apsrc=/usr/src/apache1.3.19/apache_1.3.19' '--with-sablot'
Jochen
[EMAIL PROTECTED]