From: Michael M Slusarz Date: Fri, 5 Mar 2010 17:28:52 +0000 (-0700) Subject: Add simplexml to list of required extensions X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=e409ebe95a3b9cd22c7cd77ff676fda89549aa60;p=horde.git Add simplexml to list of required extensions --- diff --git a/horde/docs/INSTALL b/horde/docs/INSTALL index 600f7f608..4d98c1f1c 100644 --- a/horde/docs/INSTALL +++ b/horde/docs/INSTALL @@ -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: diff --git a/horde/lib/Test.php b/horde/lib/Test.php index c46f1c69d..849681034 100644 --- a/horde/lib/Test.php +++ b/horde/lib/Test.php @@ -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 --disable-all/--disbale-simplexml, 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.'