home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2004 April
/
CMCD0404.ISO
/
Software
/
Freeware
/
Programare
/
groupoffice-com-2.01
/
modules
/
wiki
/
config.php
< prev
next >
Wrap
PHP Script
|
2004-03-08
|
4KB
|
104 lines
<?php
// config.php
//
// This file was generated by the install/configure.pl script based
// on values entered by the administrator. It contains the most
// common (and vital) configuration parameters for WikkiTikkiTavi to
// run.
//
// You may edit this file by hand or use configure.pl to generate a
// new copy.
//
// Certain other settings may be configured; look in lib/defaults.php
// to see them. Rather than changing them in lib/defaults.php, you
// should copy them from there to here. The settings here will safely
// over-ride those in lib/defaults.php.
// $Admin specifies the administrator e-mail address used in error messages.
$Admin = $GO_CONFIG->webmaster_email;;
// If $DBPersist is not 0, persistent database connections will be used.
// Note that this is not supported by all hosting providers.
$DBPersist = 1;
// $DBServer indicates the hostname of the database server. It may be
// set to '' for the local host.
$DBServer = $GO_CONFIG->db_host;
// $DBName indicates the name of the database that the wiki should use.
$DBName = $GO_CONFIG->db_name;
// $DBUser indicates the name of the database user.
$DBUser = $GO_CONFIG->db_user;
// $DBPasswd indicates the password to use for database access.
$DBPasswd = $GO_CONFIG->db_pass;
// $DBTablePrefix is used to start table names for the wiki's tables. If your
// hosting provider only allows you one database, you can set up multiple
// wikis in the same database by creating tables that have different prefixes.
$DBTablePrefix = 'wiki_';
// $WikiName determines the name of your wiki. This name is used in the
// browser title bar. Often, it will be the same as $HomePage.
$WikiName = 'GroupOfficeWiki';
// $HomePage determines the "main" page of your wiki. If browsers do not ask
// to see a specific page they will be shown the home page. This should be
// a wiki page name, like 'AcmeProjectWiki'.
$HomePage = 'GroupOfficeWiki';
// $InterWikiPrefix determines what interwiki prefix you recommend other
// wikis use to link to your wiki. Usually it is similar to your WikiName.
$InterWikiPrefix = '';
// If $EnableFreeLinks is set to 1, links of the form "((page name))" will be
// turned on for this wiki. If it is set to 0, they will be disallowed.
$EnableFreeLinks = 1;
// If $EnableWikiLinks is set to 1, normal WikiNames will be treated as links
// in this wiki. If it is set to 0, they will not be treated as links
// (in which case you should be careful to enable free links!).
$EnableWikiLinks = 1;
// When $EnableTextEnhance is set to 1, the extended operators allowing you
// to do both bold, italic, super-/subscript, ins/del are available. When
// set to 0, only the traditional ''italic'' and '''bold'' are available.
$EnableTextEnhance = 1;
// $ScriptBase determines the location of your wiki script. It should indicate
// the full URL of the main index.php script itself.
$ScriptBase = $GO_CONFIG->full_url.'/modules/wiki/index.php';
// $AdminScript indicates the location of your admin wiki script. It should
// indicate the full URL of the admin/index.php script itself.
$AdminScript = $GO_CONFIG->full_url.'/modules/wiki/admin/index.php';
// $WikiLogo determines the location of your wiki logo.
$WikiLogo = '';
// $MetaKeywords indicates what keywords to report on the meta-keywords tag.
// This is useful to aid search engines in indexing your wiki.
$MetaKeywords = '';
// $MetaDescription should be a sentence or two describing your wiki. This
// is useful to aid search engines in indexing your wiki.
$MetaDescription = '';
// TemplateDir indicates what directory your wiki templates are located in.
// You may use this to install other templates than the default template.
define('TemplateDir', 'template');
// !!!WARNING!!!
// If $AdminEnabled is set to 1, the script admin/index.php will be accessible.
// This allows administrators to lock pages and block IP addresses. If you
// want to use this feature, YOU SHOULD FIRST BLOCK ACCESS TO THE admin/
// DIRECTORY BY OTHER MEANS, such as Apache's authorization directives.
// If you do not do so, any visitor to your wiki will be able to lock pages
// and block others from accessing the wiki.
// If $AdminEnabled is set to 0, administrator control will be disallowed.
$AdminEnabled = 0;
?>