X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/f3467d6ea5f38cd295dd4b2bdfe201b792b1a224..3262206d3cda17048d2010de8dec165c8f5bf052:/dbinstall.php diff --git a/dbinstall.php b/dbinstall.php index 76a257ca..a3cdd9cc 100644 --- a/dbinstall.php +++ b/dbinstall.php @@ -131,6 +131,11 @@ if ($request->isGet()) { } } + // Check is libxml is enabled (which is a PHP default). + if (!function_exists('libxml_clear_errors')) { + echo('Error: libxml is not enabled. It is required for import group operation (to parse XML).
'); + } + // Check database access. require_once('MDB2.php'); $conn = MDB2::connect(DSN);