Server IP : 195.201.23.43 / Your IP : 52.14.94.195 Web Server : Apache System : Linux webserver2.vercom.be 5.4.0-192-generic #212-Ubuntu SMP Fri Jul 5 09:47:39 UTC 2024 x86_64 User : kdecoratie ( 1041) PHP Version : 7.1.33-63+ubuntu20.04.1+deb.sury.org+1 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/share/webmin/openslp/ |
Upload File : |
#!/usr/bin/perl # # An OpenSLP webmin module # by Monty Charlton <monty@caldera.com>, # # Copyright (c) 2000 Caldera Systems # # Permission to use, copy, modify, and distribute this software and its # documentation under the terms of the GNU General Public License is hereby # granted. No representations are made about the suitability of this software # for any purpose. It is provided "as is" without express or implied warranty. # See the GNU General Public License for more details. # require './slp-lib.pl'; &ui_print_header(undef, $text{'log_title'}, ""); local $log = &get_log_config(); print "<form action=save_log.cgi>\n"; print "<table border width=100%>\n"; print "<tr $tb> <td><b>$text{'log_title'}</b></td> </tr>\n"; print "<tr $cb> <td><table width=100%>\n"; if ($log->{'traceDATraffic'} !~ /^true$/i || $log->{'traceDATrafficDisabled'}) { $false = " checked"; } else { $true = " checked"; } print "<tr><td><b>$text{'log_traceDATraffic'}</b></td><td nowrap>\n"; print "<input type=radio name=traceDATraffic value=1$true>\n"; print "True <BR>"; print "<input type=radio name=traceDATraffic value=0$false>\n"; print "False (default)"; print "</td>\n"; print "<td> </td>\n"; local $true=""; local $false=""; if ($log->{'traceMsg'} !~ /^true$/i || $log->{'traceMsgDisabled'}) { $false = " checked"; } else { $true = " checked"; } print "<td><b>$text{'log_traceMsg'}</b></td><td nowrap>\n"; print "<input type=radio name=traceMsg value=1$true>\n"; print "True <BR>"; print "<input type=radio name=traceMsg value=0$false>\n"; print "False (default) "; print "</td></tr>\n"; print "<tr><td colspan=6><HR></td></tr>"; $true=""; $false=""; if ($log->{'traceDrop'} !~ /^true$/i || $log->{'traceDropDisabled'}) { $false = " checked"; } else { $true = " checked"; } print "<tr><td><b>$text{'log_traceDrop'}</b></td><td nowrap>\n"; print "<input type=radio name=traceDrop value=1$true>\n"; print "True <BR>"; print "<input type=radio name=traceDrop value=0$false>\n"; print "False (default) "; print "</td>\n"; print "<td> </td>\n"; $true=""; $false=""; if ($log->{'traceReg'} !~ /^true$/i || $log->{'traceRegDisabled'}) { $false = " checked"; } else { $true = " checked"; } print "<td><b>$text{'log_traceReg'}</b></td><td nowrap>\n"; print "<input type=radio name=traceReg value=1$true>\n"; print "True <BR>"; print "<input type=radio name=traceReg value=0$false>\n"; print "False (default) "; print "</td>\n"; print "</table></td></tr></table>\n"; print "<input type=submit value=\"$text{'save'}\"></form>\n"; &ui_print_footer("", $text{'index_return'});Private