<?php /*
FWNUA 3.0 Web Interface -> Configuration File
Copyright (C) 2003-2004 FWNUA
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the Free
Software Foundation; either version 2 of the License, or (at your option)
any later version. This program is distributed in the hope that it will be
useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to:
Free Software Foundation, Inc.,
59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.
Author: Andrew Heacock <hide@address.com>
Original Concept: Thomas Taylor <hide@address.com>
Web Site: http://fwnua.sourceforge.net/
*/
/* This is the directory or share name where the .csv log files are located.
Be sure to note the double backslash's on Windows Directory names.
Ex. "\\\\SERVER\\fwnua\\" or for UNIX "/mnt/fwnua/logs/" */
$logdir = "g:\\fwnua\\";
/* Once you map a virtual directory to your log files on your web server,
enter the URL path to the virtual directory.
Ex. If your log files appear in 'http://intranet.mycompany.com/fwnua/logs/'
below, you would enter "fwnua/logs" */
$vdir = "logs";
/* Each of these options define which columns will be displayed and able to be
searched through. Enter '1' to enable the column, or '0' to disable it.
Ex. If you do not care what the login status is, you can disable the column
from the output of index.php( $colstatus = 0; ) */
$colusername = 1;
$colcomputer = 1;
$colipaddress = 1;
$coldomain = 1;
$colstatus = 1;
$coltime = 1;
$coldate = 1;
$colvnc = 1;
?>