X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=include%2Fclass_log.inc;h=c321b201411435bddf7bc85dc203b3bbf8d01ccb;hb=b55c9da0cc1fed54d967f22d17380948e94d40a0;hp=462be2892e3b53566e64def61b51400c6afe14ca;hpb=fc44dae33071cec905b366610a5468809b09977b;p=gosa.git diff --git a/include/class_log.inc b/include/class_log.inc index 462be2892..c321b2014 100644 --- a/include/class_log.inc +++ b/include/class_log.inc @@ -55,7 +55,7 @@ class log { $entry['user']= "unkown"; }else{ - $this->config = $_SESSION['config']; + $this->config = &$_SESSION['config']; $ui = get_userinfo(); $entry['user']= @$ui->dn; } @@ -98,7 +98,13 @@ class log { $this->log_into_syslog($entry); } if(isset($this->config->current['LOGGING']) && preg_match("/(^|,)mysql(,|$)/i",$this->config->current['LOGGING'])){ - $this->log_into_db($entry); + $res = $this->log_into_db($entry); + + if(!$res){ + global $config; + $config->current['LOGGING'] = preg_replace("/(^|,)mysql(,|$)/",",",$config->current['LOGGING']); + msg_dialog::display(_("Logging to MySQL disabled"),_("The logging to a MySQL database is now disabled for this session of GOsa, due to communication errors with the specified logging database."), INFO_DIALOG); + } } } } @@ -147,10 +153,12 @@ class log { $con = @mysql_pconnect($server_name,$server['USER'],$server['PWD']); if(!$con){ print_red(sprintf(_("Could not connect to logging server %s."),$server_name)); + return(FALSE); }else{ $db = mysql_select_db($server['DB'],$con); if(!$db){ - @print_red(sprintf(_("Could not select database %s on server %s. Server says :%s"),$server['DB'],$server['SERVER'],mysql_error($con))); + print_red(sprintf(_("Could not select database %s on server %s. Server says :%s"),$server['DB'],$server['SERVER'],mysql_error($con))); + return(FALSE); }else{ /* Create mysql syntax */ @@ -170,12 +178,13 @@ class log { $res = mysql_query($query,$con); if(!$res){ print_red(sprintf(_("Could not query database %s on server %s. Server ssys :%s"),$server['DB'],$server['SERVER'],mysql_error($con))); - + return(FALSE); } } mysql_close($con); } } + return(TRUE); } }