I have just compiled and installed php v4.3.0 vith dom support under apache.
Everything worked fine compiling and installing, and starting up apache.
But when i try to run this kode, no output is produced:
<?php
$dom=domxml_new_doc('1.0');
$page=$dom->create_element('html');
$dom->append_child($page);
echo($dom->dump_mem(true));
?>
I do not get error messages, so if somebody could give med a tip as to what is wrong I would greatly appreciate it.
Thanks Øyvind
Some additional info is given below:
System Linux myMaschine 4.18-14 #1 Wed Sep 4 13:35:50 EDT 2002 i686
Build Date Jan 15 2003 17:35:35
Configure Command './configure' '--with-zlib-dir=/usr/lib' '--with-dom' '--with-apxs=/usr/local/apache/bin/apxs' '--with-config-file-path=/usr/local/apache/conf' '--enable-versioning' '--with-mysql=/usr/local' '--enable-ftp' '--enable-bcmath' '--disable-debug' '--enable-memory-limit=yes' '--enable-track-vars' Server API Apache Virtual Directory Support disabled
Configuration File (php.ini) Path /usr/local/apache/conf/php.ini
PHP API 20020918
PHP Extension 20020429
Zend Extension 20021010
Debug Build no
Thread Safety disabled
Registered PHP Streams php, http, ftp, compress.zlib
DOM/XML enabled
DOM/XML API Version 20020814
libxml Version 20423
HTML Support enabled
XPath Support enabled
XPointer Support enabled


