When I still remember..I'm getting a lot of error messages into
my error_log, e.g.:
Unknown(0) : Warning - Constant xpath_boolean already defined
And I think you have PHP_MINIT and PHP_RINIT mixed..
ie.
Index: php_domxml.c
===================================================================
RCS file: /repository/php4/ext/domxml/php_domxml.c,v
retrieving revision 1.33
diff -u -r1.33 php_domxml.c
--- php_domxml.c 2001/03/22 06:58:13 1.33
+++ php_domxml.c 2001/03/22 12:13:37
@@ -667,12 +667,12 @@
return(wrapper);
}
-PHP_MINIT_FUNCTION(domxml)
+PHP_RINIT_FUNCTION(domxml)
{
return SUCCESS;
}
-PHP_RINIT_FUNCTION(domxml)
+PHP_MINIT_FUNCTION(domxml)
{
zend_class_entry ce;
le_domxmldocp =
zend_register_list_destructors_ex(php_free_xml_doc, NULL, "domdocument",
module_number);
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]