owl.nt40.apache.php 2.67 KB
<?php

/*

  File: owl.php
  Author: Chris
  Date: 2000/12/14

  Owl: Copyright Chris Vincent <cvincent@project802.net>

  You should have received a copy of the GNU Public
  License along with this package; if not, write to the
  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  Boston, MA 02111-1307, USA.

*/

// Some urls
$default->owl_root_url		= "/intranet";
$default->owl_graphics_url	= $default->owl_root_url . "/graphics";

// Directory where owl is located
$default->owl_fs_root		= "C:\Program Files\Apache Group\Apache\htdocs\intranet";
$default->owl_LangDir		= $default->owl_fs_root . "/locale";

// Directory where The Documents Directory is On Disc
$default->owl_FileDir           =  "C:\Program Files\Apache Group\Apache\htdocs\intranet";

//****************************************************
// Pick your language system default language
// now each user can pick his language
// if they are allowed by the admin to change their
// preferences.
//****************************************************
// b5
// Chinese
// Danish
// Deutsch
// Dutch
// English
// Francais
// Hungarian
// Italian
// NewEnglish <-  NEW LOOK, English will be obsoleted in a future version
// Norwegian
// Portuguese
// Spanish

$default->owl_lang              = "NewEnglish";

// Table with user info
$default->owl_users_table	= "users";

// Table with group memebership for users 
$default->owl_users_grpmem_table= "membergroup";
$default->owl_sessions_table = "active_sessions";

// Table with file info
$default->owl_files_table	= "files";

// Table with folders info
$default->owl_folders_table	= "folders";

// Table with group info
$default->owl_groups_table	= "groups";

// Table with mime info
$default->owl_mime_table	= "mimes";

// Table with html attributes
$default->owl_html_table        = "html";

// Table with html attributes
$default->owl_prefs_table       = "prefs";

// Table with file data info
$default->owl_files_data_table  = "filedata";


// Change this to reflect the database you are using
require("$default->owl_fs_root/phplib/db_mysql.inc");
//require("$default->owl_fs_root/phplib/db_pgsql.inc");

//begin WES change
// Database info
$default->owl_db_user           = "root";
$default->owl_db_pass           = "";
$default->owl_db_host           = "localhost";
$default->owl_db_name           = "intranet";


$default->owl_notify_link       = "http://$SERVER_NAME$default->owl_root_url/";

// logo file that must reside inside lang/graphics directory
$default->logo = "owl.gif";

// BUG Number: 457588
// This is to display the version information in the footer

$default->version = "owl 0.7";
$default->phpversion = "4.0.2";
$default->debug = False;
$default->owl_use_fs            = true;
?>