of the RSS channel. if (!defined('WIKI_NAME')) define('WIKI_NAME', 'PhpWiki'); // If set, we will perform reverse dns lookups to try to convert the // users IP number to a host name, even if the http server didn't do // it for us. if (!defined('ENABLE_REVERSE_DNS')) define('ENABLE_REVERSE_DNS', true); // Username and password of administrator. // Set these to your preferences. For heaven's sake // pick a good password or use our passwordencrypt.php tool. if (!defined('ADMIN_USER')) define('ADMIN_USER', ""); if (!defined('ADMIN_PASSWD')) define('ADMIN_PASSWD', ""); // If you used the passencrypt.php utility to encode the password // then uncomment this line. Recommended! //if (!defined('ENCRYPTED_PASSWD')) define('ENCRYPTED_PASSWD', true); // If true, only the admin user can make zip dumps, else zip dumps // require no authentication. if (!defined('ZIPDUMP_AUTH')) define('ZIPDUMP_AUTH', false); // Define to false to disable the RawHtml plugin. //if (!defined('ENABLE_RAW_HTML')) define('ENABLE_RAW_HTML', false); // If you define this to true, (MIME-type) page-dumps (either zip dumps, // or "dumps to directory" will be encoded using the quoted-printable // encoding. If you're actually thinking of mailing the raw page dumps, // then this might be useful, since (among other things,) it ensures // that all lines in the message body are under 80 characters in length. // // Also, setting this will cause a few additional mail headers // to be generated, so that the resulting dumps are valid // RFC 2822 e-mail messages. // // Probably, you can just leave this set to false, in which case you get // raw ('binary' content-encoding) page dumps. if (!defined('STRICT_MAILABLE_PAGEDUMPS')) define('STRICT_MAILABLE_PAGEDUMPS', false); // Here you can change the filename suffix used for XHTML page dumps. // If you don't want any suffix just comment this out. $HTML_DUMP_SUFFIX = '.html'; // The maximum file upload size. if (!defined('MAX_UPLOAD_SIZE')) define('MAX_UPLOAD_SIZE', 16 * 1024 * 1024); // If the last edit is older than MINOR_EDIT_TIMEOUT seconds, the // default state for the "minor edit" checkbox on the edit page form // will be off. if (!defined('MINOR_EDIT_TIMEOUT')) define("MINOR_EDIT_TIMEOUT", 7 * 24 * 3600); // Actions listed in this array will not be allowed. //$DisabledActions = array('dumpserial', 'loadfile'); // PhpWiki can generate an access_log (in "NCSA combined log" format) // for you. If you want one, define this to the name of the log file. //define('ACCESS_LOG', '/tmp/wiki_access_log'); // By default PhpWiki will try to have PHP compress it's output // before sending it to the browser (if you have a recent enough // version of PHP and the browser supports it.) // Define COMPRESS_OUTPUT to false to prevent output compression. // Define COMPRESS_OUTPUT to true to force output compression, // even if we think your version of PHP does this in a buggy // fashion. // Leave it undefined to leave the choice up to PhpWiki. //define('COMPRESS_OUTPUT', false); // HTTP CACHE_CONTROL // // This controls how PhpWiki sets the HTTP cache control // headers (Expires: and Cache-Control:) // // Choose one of: // // NONE: This is roughly the old (pre 1.3.4) behavior. PhpWiki will // instruct proxies and browsers never to cache PhpWiki output. // // STRICT: Cached pages will be invalidated whenever the database global // timestamp changes. This should behave just like NONE (modulo // bugs in PhpWiki and your proxies and browsers), except that // things will be slightly more efficient. // // LOOSE: Cached pages will be invalidated whenever they are edited, // or, if the pages include plugins, when the plugin output could // concievably have changed. // // Behavior should be much like STRICT, except that sometimes // wikilinks will show up as undefined (with the question mark) // when in fact they refer to (recently) created pages. // (Hitting your browsers reload or perhaps shift-reload button // should fix the problem.) // // ALLOW_STALE: Proxies and browsers will be allowed to used stale pages. // (The timeout for stale pages is controlled by CACHE_CONTROL_MAX_AGE.) // // This setting will result in quirky behavior. When you edit a // page your changes may not show up until you shift-reload the // page, etc... // // This setting is generally not advisable, however it may be useful // in certain cases (e.g. if your wiki gets lots of page views, // and few edits by knowledgable people who won't freak over the quirks.) // // The default is currently LOOSE. // if (!defined('CACHE_CONTROL')) define('CACHE_CONTROL', 'LOOSE'); // Maximum page staleness, in seconds. // // This only has effect if CACHE_CONTROL is set to ALLOW_STALE. if (!defined('CACHE_CONTROL_MAX_AGE')) define('CACHE_CONTROL_MAX_AGE', 600); // MARKUP CACHING // // PhpWiki normally caches a preparsed version (i.e. mostly // converted to HTML) of the most recent version of each page. // (Parsing the wiki-markup takes a fair amount of CPU.) // // Define WIKIDB_NOCACHE_MARKUP to true to disable the // caching of marked-up page content. // // Note that you can also disable markup caching on a per-page // temporary basis by addinging a query arg of '?nocache=1' // to the URL to the page. (Use '?nocache=purge' to completely // discard the cached version of the page.) // // You can also purge the cached markup globally by using the // "Purge Markup Cache" button on the PhpWikiAdministration page. //if (!defined('WIKIDB_NOCACHE_MARKUP')) define ('WIKIDB_NOCACHE_MARKUP', true); ///////////////////////////////////////////////////////////////////// // // Part Two: // Database Selection // ///////////////////////////////////////////////////////////////////// // // This array holds the parameters which select the database to use. // // Not all of these parameters are used by any particular DB backend. // $DBParams = array( // Select the database type: // Choose ADODB or SQL to use an SQL database with ADODB or PEAR. // Choose dba to use one of the standard UNIX dbm libraries. // Choose file to use a flat file database. //'dbtype' => 'ADODB', //'dbtype' => 'SQL', 'dbtype' => 'dba', //'dbtype' => 'file', // For SQL based backends, specify the database as a DSN // The most general form of a DSN looks like: // // phptype(dbsyntax)://username:password@protocol+hostspec/database // // For a MySQL database, the following should work: // // mysql://user:password@host/databasename // // To connect over a unix socket, use something like // // mysql://user:password@unix(/path/to/socket)/databasename // //'dsn' => 'mysql://guest@unix(/var/lib/mysql/mysql.sock)/test', //'dsn' => 'mysql://guest@localhost/test', //'dsn' => 'pgsql://localhost/test', // experimental 'db_session_table' => 'session', // Used by all DB types: // prefix for filenames or table names /* * currently you MUST EDIT THE SQL file too (in the schemas/ * directory because we aren't doing on the fly sql generation * during the installation. */ //'prefix' => 'phpwiki_', // Used by either 'dba' or 'file' and must be writable by the web // server If you leave this as '/tmp' you will probably lose all // your files eventually 'directory' => "/tmp", // choose the type of DB database file to use; most GNU systems have gdbm 'dba_handler' => 'gdbm', // Either of 'gdbm' or 'db2' work great for me. //'dba_handler' => 'db2', //'dba_handler' => 'db3', // Works fine on Windows, but not on every linux. //'dba_handler' => 'dbm', // On sf.net redhat there's dbm and gdbm. // dbm suffers from limits on size of data items? 'timeout' => 20, //'timeout' => 5 ); // Only for 'dbtype' => 'SQL'. See schemas/mysql.sql or schemas/psql.sql //define('USE_DB_SESSION',true); ///////////////////////////////////////////////////////////////////// // // The next section controls how many old revisions of each page are // kept in the database. // // There are two basic classes of revisions: major and minor. Which // class a revision belongs in is determined by whether the author // checked the "this is a minor revision" checkbox when they saved the // page. // // There is, additionally, a third class of revisions: author // revisions. The most recent non-mergable revision from each distinct // author is and author revision. // // The expiry parameters for each of those three classes of revisions // can be adjusted seperately. For each class there are five // parameters (usually, only two or three of the five are actually // set) which control how long those revisions are kept in the // database. // // max_keep: If set, this specifies an absolute maximum for the // number of archived revisions of that class. This is // meant to be used as a safety cap when a non-zero // min_age is specified. It should be set relatively high, // and it's purpose is to prevent malicious or accidental // database overflow due to someone causing an // unreasonable number of edits in a short period of time. // // min_age: Revisions younger than this (based upon the supplanted // date) will be kept unless max_keep is exceeded. The age // should be specified in days. It should be a // non-negative, real number, // // min_keep: At least this many revisions will be kept. // // keep: No more than this many revisions will be kept. // // max_age: No revision older than this age will be kept. // // Supplanted date: Revisions are timestamped at the instant that they // cease being the current revision. Revision age is computed using // this timestamp, not the edit time of the page. // // Merging: When a minor revision is deleted, if the preceding // revision is by the same author, the minor revision is merged with // the preceding revision before it is deleted. Essentially: this // replaces the content (and supplanted timestamp) of the previous // revision with the content after the merged minor edit, the rest of // the page metadata for the preceding version (summary, mtime, ...) // is not changed. // // Keep up to 8 major edits, but keep them no longer than a month. $ExpireParams['major'] = array('max_age' => 32, 'keep' => 8); // Keep up to 4 minor edits, but keep them no longer than a week. $ExpireParams['minor'] = array('max_age' => 7, 'keep' => 4); // Keep the latest contributions of the last 8 authors up to a year. // Additionally, (in the case of a particularly active page) try to // keep the latest contributions of all authors in the last week (even // if there are more than eight of them,) but in no case keep more // than twenty unique author revisions. $ExpireParams['author'] = array('max_age' => 365, 'keep' => 8, 'min_age' => 7, 'max_keep' => 20); ///////////////////////////////////////////////////////////////////// // // Part Three: (optional) // User Authentification // ///////////////////////////////////////////////////////////////////// // The wiki can be protected by HTTP Auth. Use the username and password // from there, but this is not sufficient. Try the other methods also. if (!defined('ALLOW_HTTP_AUTH_LOGIN')) define('ALLOW_HTTP_AUTH_LOGIN', false); // If ALLOW_USER_LOGIN is true, any defined internal and external // authentification method is tried. // If not, we don't care about passwords, but listen to the next // two constants. if (!defined('ALLOW_USER_LOGIN')) define('ALLOW_USER_LOGIN', true); // If ALLOW_BOGO_LOGIN is true, users are allowed to login (with // any/no password) using any userid which: // 1) is not the ADMIN_USER, // 2) is a valid WikiWord (matches $WikiNameRegexp.) // If true, users may be created by themselves. Otherwise we need seperate auth. // This might be renamed to ALLOW_SELF_REGISTRATION. if (!defined('ALLOW_BOGO_LOGIN')) define('ALLOW_BOGO_LOGIN', true); // This will go away, with true page permissions. // If set, then if an anonymous user attempts to edit a page he will // be required to sign in. (If ALLOW_BOGO_LOGIN is true, of course, // no password is required, but the user must still sign in under // some sort of BogoUserId.) if (!defined('REQUIRE_SIGNIN_BEFORE_EDIT')) define('REQUIRE_SIGNIN_BEFORE_EDIT', false); // The login code now uses PHP's session support. Usually, the default // configuration of PHP is to store the session state information in // /tmp. That probably will work fine, but fails e.g. on clustered // servers where each server has their own distinct /tmp (this is the // case on SourceForge's project web server.) You can specify an // alternate directory in which to store state information like so // (whatever user your httpd runs as must have read/write permission // in this directory): //ini_set('session.save_path', 'some_other_directory'); // If your php was compiled with --enable-trans-sid it tries to // add a PHPSESSID query argument to all URL strings when cookie // support isn't detected in the client browser. For reasons // which aren't entirely clear (PHP bug) this screws up the URLs // generated by PhpWiki. Therefore, transparent session ids // should be disabled. This next line does that. // // (At the present time, you will not be able to log-in to PhpWiki, // unless your browser supports cookies.) @ini_set('session.use_trans_sid', 0); // LDAP auth if (!defined('ALLOW_LDAP_LOGIN')) define('ALLOW_LDAP_LOGIN', true and function_exists('ldap_connect')); if (!defined('LDAP_AUTH_HOST')) define('LDAP_AUTH_HOST', 'localhost'); // Give the right LDAP root search information in the next statement. if (!defined('LDAP_AUTH_SEARCH')) define('LDAP_AUTH_SEARCH', "ou=mycompany.com,o=My Company"); // IMAP auth: check userid/passwords from a imap server, defaults to localhost if (!defined('ALLOW_IMAP_LOGIN')) define('ALLOW_IMAP_LOGIN', true and function_exists('imap_open')); if (!defined('IMAP_AUTH_HOST')) define('IMAP_AUTH_HOST', 'localhost'); // Sample of external AuthDB mysql tables to check against /* use phpwiki; CREATE TABLE pref ( userid char(48) binary NOT NULL UNIQUE, preferences text NULL default '', PRIMARY KEY (userid) ) TYPE=MyISAM; INSERT INTO user VALUES ('ReiniUrban', 'a:1:{s:6:"passwd";s:13:"7cyrcMAh0grMI";}'); // or password only CREATE TABLE user ( userid char(48) binary NOT NULL UNIQUE, passwd char(48) binary default '*', PRIMARY KEY (userid) ) TYPE=MyISAM; */ // external mysql member table /* CREATE TABLE member ( user char(48) NOT NULL, group char(48) NOT NULL default 'users', PRIMARY KEY (user), KEY groupname (groupname) ) TYPE=MyISAM; INSERT INTO member VALUES ('wikiadmin', 'root'); INSERT INTO member VALUES ('TestUser', 'users'); */ // // Seperate DB User Authentification. // Can be external, like radius, phpnuke, courier authmysql, // apache auth_mysql or something else. // The default is to store the data as metadata in WikiPages. // The most likely dsn option is the same dsn as the wikipages. $DBAuthParams = array( //'auth_dsn' => 'mysql://localhost/phpwiki', // USER => PASSWORD 'auth_check' => 'SELECT passwd FROM user WHERE username="$userid"', // Alternatively we accept files also. (not yet) //'auth_user_file' => '/etc/shadow', // '/etc/httpd/.htpasswd' 'auth_crypt_method' => 'crypt', // 'crypt' (unix) or 'md5' (mysql) or just 'plain' // 'auth_crypt_method' => 'md5', // for 'mysql://localhost/mysql' users // 'auth_crypt_method' => 'plain', // If 'auth_update' is not defined but 'auth_check' is defined, the user cannot // change his password. // $password is processed by the 'auth_crypt_method'. 'auth_update' => 'UPDATE user SET password="$password" WHERE username="$userid"', // USER => PREFERENCES // This can be optionally defined in an external DB. // The default is the users homepage. //'pref_select' => 'SELECT pref from user WHERE username="$userid"', //'pref_update' => 'UPDATE user SET prefs="$pref_blob" WHERE username="$userid"', // USERS <=> GROUPS // This can be optionally defined in an external DB. The default is a // special locked wikipage for groupmembers .(which?) // All members of the group: 'group_members' => 'SELECT username FROM grouptable WHERE groupname="$group"', // All groups this user belongs to: 'user_groups' => 'SELECT groupname FROM grouptable WHERE username="$userid"', // Alternatively we accept files also. (not yet) //'auth_group_file' => '/etc/groups', // '/etc/httpd/.htgroup' 'dummy' => false, ); ///////////////////////////////////////////////////////////////////// // // Part Four: // Page appearance and layout // ///////////////////////////////////////////////////////////////////// /* THEME * * Most of the page appearance is controlled by files in the theme * subdirectory. * * There are a number of pre-defined themes shipped with PhpWiki. * Or you may create your own (e.g. by copying and then modifying one of * stock themes.) * * Pick one. */ if (!defined('THEME')) { define('THEME', 'default'); //define('THEME', 'Hawaiian'); //define('THEME', 'MacOSX'); //define('THEME', 'Portland'); //define('THEME', 'Sidebar'); //define('THEME', 'SpaceWiki'); } // Select a valid charset name to be inserted into the xml/html pages, // and to reference links to the stylesheets (css). For more info see: // . Note that PhpWiki // has been extensively tested only with the latin1 (iso-8859-1) // character set. // // If you change the default from iso-8859-1 PhpWiki may not work // properly and it will require code modifications. However, character // sets similar to iso-8859-1 may work with little or no modification // depending on your setup. The database must also support the same // charset, and of course the same is true for the web browser. (Some // work is in progress hopefully to allow more flexibility in this // area in the future). if (!defined('CHARSET')) define("CHARSET", "iso-8859-1"); // Select your language/locale - default language is "en" for English. // Other languages available: // English "en" (English - HomePage) // Dutch "nl" (Nederlands - ThuisPagina) // Spanish "es" (Español - PáginaPrincipal) // French "fr" (Français - Accueil) // German "de" (Deutsch - StartSeite) // Swedish "sv" (Svenska - Framsida) // Italian "it" (Italiano - PaginaPrincipale) // // If you set DEFAULT_LANGUAGE to the empty string, your systems // default language (as determined by the applicable environment // variables) will be used. // if (!defined('DEFAULT_LANGUAGE')) define('DEFAULT_LANGUAGE', 'en'); /* WIKI_PGSRC -- specifies the source for the initial page contents of * the Wiki. The setting of WIKI_PGSRC only has effect when the wiki is * accessed for the first time (or after clearing the database.) * WIKI_PGSRC can either name a directory or a zip file. In either case * WIKI_PGSRC is scanned for files -- one file per page. */ if (!defined('WIKI_PGSRC')) define('WIKI_PGSRC', "pgsrc"); // Default (old) behavior. //define('WIKI_PGSRC', 'wiki.zip'); // New style. //define('WIKI_PGSRC', '../../../Logs/Hamwiki/hamwiki-20010830.zip'); // New style. /* * DEFAULT_WIKI_PGSRC is only used when the language is *not* the * default (English) and when reading from a directory: in that case * some English pages are inserted into the wiki as well. * DEFAULT_WIKI_PGSRC defines where the English pages reside. */ // FIXME: is this really needed? Can't we just copy these pages into // the localized pgsrc? define('DEFAULT_WIKI_PGSRC', "pgsrc"); // These are the pages which will get loaded from DEFAULT_WIKI_PGSRC. $GenericPages = array("ReleaseNotes", "SteveWainstead", "TestPage"); ///////////////////////////////////////////////////////////////////// // // Part Five: // Mark-up options. // ///////////////////////////////////////////////////////////////////// // allowed protocols for links - be careful not to allow "javascript:" // URL of these types will be automatically linked. // within a named link [name|uri] one more protocol is defined: phpwiki $AllowedProtocols = "http|https|mailto|ftp|news|nntp|ssh|gopher"; // URLs ending with the following extension should be inlined as images $InlineImages = "png|jpg|gif"; // Perl regexp for WikiNames ("bumpy words") // (?= 2.0.30, then you may need to to use * the directive "AcceptPathInfo On" in your Apache configuration file * (or in an appropriate <.htaccess> file) for the short urls to work: * See http://httpd.apache.org/docs-2.0/mod/core.html#acceptpathinfo * * See also http://phpwiki.sourceforge.net/phpwiki/PrettyWiki for more ideas * on prettifying your urls. * * Default: PhpWiki will try to divine whether use of PATH_INFO * is supported in by your webserver/PHP configuration, and will * use PATH_INFO if it thinks that is possible. */ //if (!defined('USE_PATH_INFO')) define('USE_PATH_INFO', false); /* * VIRTUAL_PATH is the canonical URL path under which your your wiki * appears. Normally this is the same as dirname(SCRIPT_NAME), however * using, e.g. apaches mod_actions (or mod_rewrite), you can make it * something different. * * If you do this, you should set VIRTUAL_PATH here. * * E.g. your phpwiki might be installed at at /scripts/phpwiki/index.php, * but * you've made it accessible through eg. /wiki/HomePage. * * One way to do this is to create a directory named 'wiki' in your * server root. The directory contains only one file: an .htaccess * file which reads something like: * * Action x-phpwiki-page /scripts/phpwiki/index.php * SetHandler x-phpwiki-page * DirectoryIndex /scripts/phpwiki/index.php * * In that case you should set VIRTUAL_PATH to '/wiki'. * * (VIRTUAL_PATH is only used if USE_PATH_INFO is true.) */ //if (!defined('VIRTUAL_PATH')) define('VIRTUAL_PATH', '/SomeWiki'); ///////////////////////////////////////////////////////////////////// // // Part Seven: // Miscellaneous settings // ///////////////////////////////////////////////////////////////////// /* * Page name of RecentChanges page. Used for RSS Auto-discovery */ if (!defined('RECENT_CHANGES')) define ('RECENT_CHANGES', 'RecentChanges'); /* * Disable HTTP redirects. * * (You probably don't need to touch this.) * * PhpWiki uses HTTP redirects for some of it's functionality. * (e.g. after saving changes, PhpWiki redirects your browser to * view the page you just saved.) * * Some web service providers (notably free European Lycos) don't seem to * allow these redirects. (On Lycos the result in an "Internal Server Error" * report.) In that case you can set DISABLE_HTTP_REDIRECT to true. * (In which case, PhpWiki will revert to sneakier tricks to try to * redirect the browser...) */ //if (!defined('DISABLE_HTTP_REDIRECT')) define ('DISABLE_HTTP_REDIRECT', true); //////////////////////////////////////////////////////////////// // Check if we were included by some other wiki version // (getimg.php, en, de, wiki, ...) or not. // If the server requested this index.php fire up the code by loading lib/main.php. // Parallel wiki scripts can now simply include /index.php for the // main configuration, extend or redefine some settings and // load lib/main.php by themselves. See the file 'wiki'. // This overcomes the IndexAsConfigProblem. //////////////////////////////////////////////////////////////// // Tested: Works with CGI also. if (defined('VIRTUAL_PATH') and defined('USE_PATH_INFO')) { if ($HTTP_SERVER_VARS['SCRIPT_NAME'] == VIRTUAL_PATH) { include "lib/main.php"; } } else { if (defined('SCRIPT_NAME') and ($HTTP_SERVER_VARS['SCRIPT_NAME'] == SCRIPT_NAME)) { include "lib/main.php"; } elseif (strstr($HTTP_SERVER_VARS['PHP_SELF'],'index.php')) { include "lib/main.php"; } } // (c-file-style: "gnu") // Local Variables: // mode: php // tab-width: 8 // c-basic-offset: 4 // c-hanging-comment-ender-p: nil // indent-tabs-mode: nil // End: // $Log: not supported by cvs2svn $ // Revision 1.111 2003/03/18 21:40:04 dairiki // Copy Lawrence's memo on USE_PATH_INFO/AcceptPathInfo to configurator.php // (as promised). // // Plus slight clarification of default (auto-detect) behavior. // // Revision 1.110 2003/03/18 20:51:10 lakka // Revised comments on use of USE_PATH_INFO with Apache 2 // // Revision 1.109 2003/03/17 21:24:50 dairiki // Fix security bugs in the RawHtml plugin. // // Change the default configuration to allow use of plugin, since // I believe the plugin is now safe for general use. (Raw HTML will only // work on locked pages.) // // Revision 1.108 2003/03/07 22:47:01 dairiki // A few more if(!defined(...))'s // // Revision 1.107 2003/03/07 20:51:54 dairiki // New feature: Automatic extraction of keywords (for the meta keywords tag) // from Category* and Topic* links on each page. // // Revision 1.106 2003/03/07 02:48:23 dairiki // Add option to prevent HTTP redirect. // // Revision 1.105 2003/03/04 02:08:08 dairiki // Fix and document the WIKIDB_NOCACHE_MARKUP config define. // // Revision 1.104 2003/02/26 02:55:52 dairiki // New config settings in index.php to control cache control strictness. // // Revision 1.103 2003/02/22 19:43:50 dairiki // Fix comment regarding connecting to SQL server over a unix socket. // // Revision 1.102 2003/02/22 18:53:38 dairiki // Renamed method Request::compress_output to Request::buffer_output. // // Added config option to disable compression. // // Revision 1.101 2003/02/21 19:29:30 dairiki // Update PHPWIKI_VERSION to 1.3.5pre. // // Revision 1.100 2003/01/04 03:36:58 wainstead // Added 'file' as a database type alongside 'dbm'; added cvs log tag // ?>