Code

Added Some ErrorMessages
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 20 May 2005 05:41:56 +0000 (05:41 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 20 May 2005 05:41:56 +0000 (05:41 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@263 594d385d-05f5-0310-b6e9-bd551577e9d8

include/setup_checks.inc

index 9e23bf4856144201a9f79b816f59e8fd75b83296..cf6f2801baa4e5d4c01666f10118d19fbd06bc72 100644 (file)
@@ -790,14 +790,20 @@ function show_setup_page4($withoutput = true)
   if(!$ds = @ldap_connect (validate($uri)))    
   {
     $fault = true;
+    if($withoutput)
+      print_red (_("Can't connect to the specified LDAP server! Please make sure that is reachable for GOsa."));
   }
   elseif(!@ldap_set_option($ds, LDAP_OPT_PROTOCOL_VERSION, 3))    
   {
     $fault = true;
+    if($withoutput)
+      print_red (_("Can't bind to the specified LDAP server! Please make sure that is reachable for GOsa."));
   }
   elseif(! $r =  @ldap_bind ($ds))    
   {
     $fault = true;
+    if($withoutput)
+      print_red (_("Can't bind to the specified LDAP server! Please make sure that is reachable for GOsa."));
   }
   else
   {