Add simplexml to list of required extensions
authorMichael M Slusarz <slusarz@curecanti.org>
Fri, 5 Mar 2010 17:28:52 +0000 (10:28 -0700)
committerMichael M Slusarz <slusarz@curecanti.org>
Fri, 5 Mar 2010 19:09:21 +0000 (12:09 -0700)
horde/docs/INSTALL
horde/lib/Test.php

index 600f7f6..4d98c1f 100644 (file)
@@ -167,8 +167,8 @@ The following prerequisites are **REQUIRED** for Horde to function properly.
    b. XML and DOM support.
 
       XML and DOM support are enabled in PHP 5 by default. You only have to
-      make sure that you do **not** use ``--disable-dom`` or
-      ``--disable-xml``.
+      make sure that you do **not** use ``--disable-dom``,
+      ``--disable-simplexml``, or ``--disable-xml``.
 
    The following PHP options are **RECOMMENDED** to enable advanced features in
    Horde:
index c46f1c6..8496810 100644 (file)
@@ -152,6 +152,11 @@ class Horde_Test
             'descrip' => 'Session Support',
             'fatal' => true
         ),
+        'SimpleXML' => array(
+            'descrip' => 'SimpleXML support',
+            'error' => 'Horde will not run without the SimpleXML extension. Don\'t compile PHP with <code>--disable-all/--disbale-simplexml</code>, or enable the SimpleXML extension individually before continuing.',
+            'fatal' => true
+        ),
         'tidy' => array(
             'descrip' => 'Tidy support',
             'error' => 'The tidy PHP extension is used to sanitize HTML data.'