]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - config/config-dist.ini
disable deprecated user constants
[SourceForge/phpwiki.git] / config / config-dist.ini
1 ; This is the main configuration file for PhpWiki.
2 ;
3 ; This file is divided into seven parts: Parts Zero, One, Two, Three,
4 ; Four, Five and Six. Each one has different configuration settings you can
5 ; change; in all cases the default should work on your system,
6 ; however, we recommend you tailor things to your particular setting.
7
8 ;=========================================================================
9 ; Part Zero: Tricky Options
10 ;=========================================================================
11 ;
12 ; If PHP needs help in finding where you installed the rest of the PhpWiki
13 ; code, you can set the include_path here.
14 ;
15 ; Define PHP's include path so that it can find the PHP source code
16 ; for this PhpWiki.
17
18 ; You shouldn't need to do this unless you've moved index.php out
19 ; of the PhpWiki install directory.
20 ;
21 ; Note that on Windows-based servers, you should use ; rather than :
22 ; as the path separator.
23 ;INCLUDE_PATH = ".:/usr/local/httpd/phpwiki"
24
25 ; Set DEBUG to 1 to view the XHTML and CSS validator icons, page
26 ; processing timer, and possibly other debugging messages at the
27 ; bottom of each page.
28 ;DEBUG = 1
29
30 ; Enable the new method of handling WikiUsers.  This is currently an
31 ; experimental feature, although it is considered fairly stable.  It's best
32 ; to leave it on, and only disable it if you have problems with it.
33 ENABLE_USER_NEW = true
34
35 ; Experimental edit feature
36 ;JS_SEARCHREPLACE = true
37
38 ;==========================================================================
39 ; Part One: Authentication and security settings.
40 ;
41 ; See Part Three for more.
42 ;==========================================================================
43 ;
44 ; The name of your wiki.
45 ;
46 ; This is used to generate a keywords meta tag in the HTML templates,
47 ; in bookmark titles for any bookmarks made to pages in your wiki,
48 ; and during RSS generation for the <title> of the RSS channel.
49 ;
50 ; To use your own logo and signature files, name them PhpWikiLogo.png
51 ; and PhpWikiSignature.png and put them into themes/default/images
52 ; (substituting "PhpWiki" in the filename with the name you define
53 ; here).
54 ;
55 ; It is recommended this be a relatively short WikiWord like the
56 ; InterWiki monikers found in the InterWikiMap. (For examples, see
57 ; lib/interwiki.map).
58 WIKI_NAME = PhpWiki
59
60 ; Visitor Hostname Lookup
61 ;
62 ; If set, reverse dns lookups will be performed to attempt to convert
63 ; the user's IP number into a host name, in the case where the http
64 ; server does not do this.
65 ENABLE_REVERSE_DNS = true
66
67 ; Username and password of administrator.
68 ;
69 ; Set these to your preferences. For heaven's sake pick a good
70 ; password and use the passencrypt.php tool to encrypt the password from
71 ; prying eyes.
72 ; http://wolfram.org/writing/howto/password.html
73
74 ; Logging into the wiki with the admin user and password allows you to lock,
75 ; unlock, or remove pages and to perform other PhpWikiAdministration
76 ; functions. On all other occasions you should simply log in with your
77 ; regular WikiName.
78 ;ADMIN_USER = 
79 ;ADMIN_PASSWD =
80
81 ; It is recommended that you use the passencrypt.php utility to encode the
82 ; admin password, in the event that someone gains ftp or ssh access to the
83 ; server and directory containing phpwiki. Once you have pasted the
84 ; encrypted password into ADMIN_PASSWD, uncomment this next line.
85 ENCRYPTED_PASSWD = true
86
87 ; Private ZIP Dumps of All Wiki Pages
88 ;
89 ; If true, only the admin user can make zip dumps. Otherwise anyone
90 ; may download all wiki pages as a single zip archive.
91 ZIPDUMP_AUTH = false
92
93 ; The RawHtml plugin allows page authors to embed real, raw HTML into Wiki
94 ; pages.  This is a possible security threat, as much HTML (or, rather,
95 ; JavaScript) can be very risky.  If you are in a controlled environment,
96 ; however, it could be of use.
97 ENABLE_RAW_HTML = false;
98
99 ; If you define this to true, (MIME-type) page-dumps (either zip dumps,
100 ; or "dumps to directory" will be encoded using the quoted-printable
101 ; encoding.  If you're actually thinking of mailing the raw page dumps,
102 ; then this might be useful, since (among other things,) it ensures
103 ; that all lines in the message body are under 80 characters in length.
104 ;
105 ; Also, setting this will cause a few additional mail headers
106 ; to be generated, so that the resulting dumps are valid
107 ; RFC 2822 e-mail messages.
108 ;
109 ; Probably you can just leave this set to false, in which case you get
110 ; raw ('binary' content-encoding) page dumps.
111 STRICT_MAILABLE_PAGEDUMPS = false
112
113 ; Here you can change the filename suffix used for XHTML page dumps.
114 ; If you don't want any suffix just comment this out.
115 HTML_DUMP_SUFFIX = .html
116
117 ; The maximum file upload size, in bytes.
118 ; The default, 16777216, is 16MB.
119 MAX_UPLOAD_SIZE = 16777216
120
121 ; If the last edit is older than MINOR_EDIT_TIMEOUT seconds, the
122 ; default state for the "minor edit" checkbox on the edit page form
123 ; will be off.
124 ; The default, 604800, is one week (7 days)
125 MINOR_EDIT_TIMEOUT = 604800
126
127 ; Actions listed in this array will not be allowed.  The complete list
128 ; of actions can be found in lib/main.php with the function
129 ; getActionDescription.
130 ; DISABLED_ACTIONS = "dumpserial : loadfile"
131
132 ; PhpWiki can generate an access_log (in "NCSA combined log" format)
133 ; for you. If you want one, define this to the name of the log
134 ; file. The server must have write access to the directory specified.
135 ;ACCESS_LOG = /var/tmp/wiki_access_log
136
137 ; By default PhpWiki will try to have PHP compress its output
138 ; before sending it to the browser (if you have a recent enough
139 ; version of PHP and the browser supports it.)
140 ; Define COMPRESS_OUTPUT to false to prevent output compression.
141 ; Define COMPRESS_OUTPUT to true to force output compression,
142 ; even if we think your version of PHP does this in a buggy
143 ; fashion.
144 ; Leave it undefined to leave the choice up to PhpWiki.
145 ;
146 ; WARNING: Compressing the output has been reported to cause serious problems
147 ; when PHP is running as a CGI.
148 ;COMPRESS_OUTPUT = false
149
150 ; This controls how PhpWiki sets the HTTP cache control
151 ; headers (Expires: and Cache-Control:) 
152 ;
153 ; Choose one of:
154 ;
155 ; NONE: This is roughly the old (pre 1.3.4) behavior.  PhpWiki will
156 ;       instruct proxies and browsers never to cache PhpWiki output.
157 ;
158 ; STRICT: Cached pages will be invalidated whenever the database global
159 ;       timestamp changes.  This should behave just like NONE (modulo
160 ;       bugs in PhpWiki and your proxies and browsers), except that
161 ;       things will be slightly more efficient.
162 ;
163 ; LOOSE: Cached pages will be invalidated whenever they are edited,
164 ;       or, if the pages include plugins, when the plugin output could
165 ;       concievably have changed.
166 ;
167 ;       Behavior should be much like STRICT, except that sometimes
168 ;       wikilinks will show up as undefined (with the question mark)
169 ;       when in fact they refer to (recently) created pages.
170 ;       (Hitting your browsers reload or perhaps shift-reload button
171 ;       should fix the problem.)
172 ;
173 ; ALLOW_STALE: Proxies and browsers will be allowed to used stale pages.
174 ;       (The timeout for stale pages is controlled by CACHE_CONTROL_MAX_AGE.)
175 ;
176 ;       This setting will result in quirky behavior.  When you edit a
177 ;       page your changes may not show up until you shift-reload the
178 ;       page, etc...
179 ;
180 ;       This setting is generally not advisable, however it may be useful
181 ;       in certain cases (e.g. if your wiki gets lots of page views,
182 ;       and few edits by knowledgable people who won't freak over the quirks.)
183 ;
184 ; The recommended default is currently LOOSE.
185 ;
186 CACHE_CONTROL = LOOSE
187
188 ; Maximum page staleness, in seconds.
189 ;
190 ; This only has effect if CACHE_CONTROL is set to ALLOW_STALE.
191 CACHE_CONTROL_MAX_AGE = 600
192
193 ; PhpWiki normally caches a preparsed version (i.e. mostly
194 ; converted to HTML) of the most recent version of each page.
195 ; (Parsing the wiki-markup takes a fair amount of CPU.)
196 ;
197 ; Define WIKIDB_NOCACHE_MARKUP to true to disable the
198 ; caching of marked-up page content.
199 ;
200 ; Note that you can also disable markup caching on a per-page
201 ; temporary basis by addinging a query arg of '?nocache=1'
202 ; to the URL to the page.  (Use '?nocache=purge' to completely
203 ; discard the cached version of the page.)
204 ;
205 ; You can also purge the cached markup globally by using the
206 ; "Purge Markup Cache" button on the PhpWikiAdministration page.
207 ;WIKIDB_NOCACHE_MARKUP = true
208
209 ;======================================================================
210 ; Part Two: Database Selection
211 ;======================================================================
212
213 ; Select the database type:
214 ;
215 ;       ADODB: uses the ADODB library for data access.
216 ;       SQL: access one of several (currently only PostgreSQL, MySQL,
217 ;               and SQLite) SQL databases using the PEAR DB library.
218 ;       dba: use one of the standard UNIX dbm libraries.
219 ;       file: use a flat file database.
220 ;       cvs: use a CVS server to store everything.
221 DATABASE_TYPE = dba
222    
223 ; prefix for filenames or table names
224 ;
225 ; Currently you MUST EDIT THE SQL file too (in the schemas/
226 ; directory because we aren't doing on the fly sql generation
227 ; during the installation.
228 ; Note: This prefix is NOT prepended to the default DBAuthParam 
229 ; tables user, pref and member!
230 ;DATABASE_PREFIX = phpwiki_
231
232 ; For SQL based backends, specify the database as a DSN (Data Source Name),
233 ; a kind of URL for databases.
234 ;
235 ; The most general form of a DSN looks like:
236 ;
237 ;       dbtype(dbsyntax)://username:password@protocol+hostspec/database
238 ;
239 ; For a MySQL database, the following should work:
240 ;
241 ;       mysql://user:password@host/databasename
242 ;
243 ; To connect over a unix socket, use something like
244 ;
245 ;       mysql://user:password@unix(/path/to/socket)/databasename
246 ;
247 ; Valid values for dbtype are mysql, pgsql, or sqlite.
248 ;
249 DATABASE_DSN = "mysql://guest@unix(/var/lib/mysql/mysql.sock)/test"
250
251 ; A table to store session information.  Only needed by SQL backends.
252 ;
253 ; A word of warning - any prefix defined above will be prepended to whatever
254 ; is given here.
255 DATABASE_SESSION_TABLE = session
256
257 ; For the file and dba backends, this specifies where the data files will be
258 ; located.  Ensure that the user that the webserver runs as has write access
259 ; to this directory.
260 ;
261 ; WARNING: leaving this as the default of '/tmp' will almost guarantee that
262 ; you'll lose your wiki data at some stage.
263 DATABASE_DIRECTORY = /tmp
264
265 ; For the dba backend, this defines which DBA variant you wish to use.
266 ;       gdbm - commonly available
267 ;       db2 - Berkeley DB v2; not supported by modern versions of PHP
268 ;       db3 - Berkeley DB v3; as per db2. The best on Windows
269 ;       db4 - Berkeley DB v4; current version, however PHP has some issues
270 ;               with it's db4 support.
271 ;       dbm - Older dba handler; suffers from limits on the size of data
272 ;               items
273 DATABASE_DBA_HANDLER = gdbm
274
275 ; How long will the system wait for a database operation to complete?
276 ; Specified in seconds.
277 DATABASE_TIMEOUT = 20
278
279 ; The login code now uses PHP's session support. Usually, the default
280 ; configuration of PHP is to store the session state information in
281 ; /tmp. That probably will work fine, but fails e.g. on clustered
282 ; servers where each server has their own distinct /tmp (this is the
283 ; case on SourceForge's project web server.) You can specify an
284 ; alternate directory in which to store state information like so
285 ; (whatever user your httpd runs as must have read/write permission
286 ; in this directory):
287 ;SESSION_SAVE_PATH = some_other_directory
288
289 ;========================================================================
290 ; Section 3a: Page revisions
291 ;
292 ; The next section controls how many old revisions of each page are
293 ; kept in the database.
294 ;========================================================================
295 ;
296 ; There are two basic classes of revisions: major and minor. Which
297 ; class a revision belongs in is determined by whether the author
298 ; checked the "this is a minor revision" checkbox when they saved the
299 ; page.
300
301 ; There is, additionally, a third class of revisions: author
302 ; revisions. The most recent non-mergable revision from each distinct
303 ; author is an author revision.
304 ;
305 ; The expiry parameters for each of those three classes of revisions
306 ; can be adjusted seperately. For each class there are five
307 ; parameters (usually, only two or three of the five are actually
308 ; set) which control how long those revisions are kept in the
309 ; database.
310 ;
311 ;   MAX_KEEP: If set, this specifies an absolute maximum for the
312 ;             number of archived revisions of that class. This is
313 ;             meant to be used as a safety cap when a non-zero
314 ;             min_age is specified. It should be set relatively high,
315 ;             and it's purpose is to prevent malicious or accidental
316 ;             database overflow due to someone causing an
317 ;             unreasonable number of edits in a short period of time.
318 ;
319 ;   MIN_AGE:  Revisions younger than this (based upon the supplanted
320 ;             date) will be kept unless max_keep is exceeded. The age
321 ;             should be specified in days. It should be a
322 ;             non-negative, real number,
323 ;
324 ;   MIN_KEEP: At least this many revisions will be kept.
325 ;
326 ;   KEEP: No more than this many revisions will be kept.
327 ;
328 ;   MAX_AGE:  No revision older than this age will be kept.
329 ;
330 ; Definitions of terms used above:
331 ;
332 ; Supplanted date: Revisions are timestamped at the instant that they
333 ; cease being the current revision. Revision age is computed using
334 ; this timestamp, not the edit time of the page.
335 ;
336 ; Merging: When a minor revision is deleted, if the preceding
337 ; revision is by the same author, the minor revision is merged with
338 ; the preceding revision before it is deleted. Essentially: this
339 ; replaces the content (and supplanted timestamp) of the previous
340 ; revision with the content after the merged minor edit, the rest of
341 ; the page metadata for the preceding version (summary, mtime, ...)
342 ; is not changed.
343 ;
344 ; Keep up to 8 major edits, but keep them no longer than a month.
345 MAJOR_MAX_AGE = 32
346 MAJOR_KEEP = 8
347
348 ; Keep up to 4 minor edits, but keep them no longer than a week.
349 MINOR_MAX_AGE = 7
350 MINOR_KEEP = 4
351
352 ; Keep the latest contributions of the last 8 authors up to a year.
353 ; Additionally, (in the case of a particularly active page) try to
354 ; keep the latest contributions of all authors in the last week (even
355 ; if there are more than eight of them,) but in no case keep more
356 ; than twenty unique author revisions.
357 AUTHOR_MAX_AGE = 365
358 AUTHOR_KEEP = 8
359 AUTHOR_MIN_AGE = 7
360 AUTHOR_MAX_KEEP = 20
361
362 ;========================================================================
363 ; Part Three: User Authentication
364 ;========================================================================
365 ;
366 ; New user authentication configuration:
367 ; We support three basic authentication methods and a stacked array 
368 ; of advanced auth methods to get and check the passwords:
369 ;
370 ; ALLOW_ANON_USER         default true
371 ; ALLOW_ANON_EDIT         default true
372 ; ALLOW_BOGO_LOGIN        default true
373 ; ALLOW_USER_PASSWORDS    default true
374
375 ; allow anon users to view existing pages
376 ALLOW_ANON_USER = true
377 ; allow anon users to edit pages
378 ALLOW_ANON_EDIT = true
379
380 ; If ALLOW_BOGO_LOGIN is true, users are allowed to login (with
381 ; any/no password) using any userid which: 
382 ;  1) is not the ADMIN_USER, and
383 ;  2) is a valid WikiWord (matches $WikiNameRegexp.)
384 ; If true, users may be created by themselves. Otherwise we need seperate auth. 
385 ; If such a user will create a so called HomePage with his userid, he will 
386 ; be able to store his preferences and password there.
387 ALLOW_BOGO_LOGIN = true
388
389 ; True User Authentication:
390 ; To require user passwords:
391 ;   ALLOW_ANON_USER = false
392 ;   ALLOW_ANON_EDIT = false
393 ;   ALLOW_BOGO_LOGIN = false,
394 ;   ALLOW_USER_PASSWORDS = true.
395 ; Otherwise any anon or bogo user might login without any or a wrong password.
396 ALLOW_USER_PASSWORDS = true
397
398 ; Many different methods can be used to check user's passwords:
399 ;   BogoLogin:     WikiWord username, with no *actual* password checking,
400 ;                   although the user will still have to enter one.
401 ;   PersonalPage:  Store passwords in the users homepage metadata (simple)
402 ;   Db:            Use $DBAuthParams[] (see below) with the PearDB or 
403 ;                   ADODB only.
404 ;   LDAP:          Authenticate against LDAP_AUTH_HOST with LDAP_BASE_DN
405 ;   IMAP:          Authenticate against IMAP_AUTH_HOST (email account)
406 ;   POP3:          Authenticate against POP3_AUTH_HOST (email account)
407 ;   File:          Store username:crypted-passwords in .htaccess like files. 
408 ;                  Use Apache's htpasswd to manage this file.
409 ;   HttpAuth:      Use the protection by the webserver (.htaccess) or 
410 ;                  enforce it
411 ;
412 ; Several of these methods can be used together, in the manner specified by
413 ; USER_AUTH_POLICY, below.  To specify multiple authentication methods,
414 ; separate the name of each one with colons.
415 USER_AUTH_ORDER = PersonalPage : Db
416
417 ; For "security" purposes, you can specify that a password be at least a
418 ; certain number of characters long.  This applies even to the BogoLogin
419 ; method.
420 PASSWORD_LENGTH_MINIMUM = 2
421     
422 ; The following policies are available for user authentication:
423 ;       first-only: use only the first method in USER_AUTH_ORDER
424 ;       old:        ignore USER_AUTH_ORDER and try to use all available 
425 ;                       methods as in the previous PhpWiki releases (slow)
426 ;       strict:     check if the user exists for all methods: 
427 ;                       on the first existing user, try the password. 
428 ;                       dont try the other methods on failure then
429 ;       stacked:    check the given user - password combination for all
430 ;                       methods and return true on the first success.
431 USER_AUTH_POLICY = old
432
433 ; LDAP authentication options:
434 ;
435 ; The LDAP server to connect to.  Can either be a hostname, or a complete
436 ; URL to the server (useful if you want to use ldaps or specify a different
437 ; port number).
438 LDAP_AUTH_HOST = ldap://localhost:389
439
440 ; The organizational or domain BASE DN: e.g. "dc=mydomain,dc=com".
441 ;
442 ; Note: ou=Users and ou=Groups are used for GroupLdap Membership
443 LDAP_BASE_DN = "ou=Users,o=Development,dc=mycompany.com"
444
445 ; Some LDAP servers need some more options, such as the Windows Active
446 ; Directory Server.  Specify the options (as allowed by the PHP LDAP module)
447 ; and their values as NAME=value pairs separated by colons.
448 ; LDAP_SET_OPTION = LDAP_OPT_PROTOCOL_VERSION=3:LDAP_OPT_REFERRALS=0
449
450 ; DN to bind to the LDAP server as.
451 ; LDAP_AUTH_USER = CN=ldapuser,CN=Users,DC=uai,DC=int
452
453 ; Password to use to bind to the LDAP server, as the DN specified in
454 ; the LDAP_AUTH_USER option (above).
455 ; LDAP_AUTH_PASSWORD = s3kr1t
456
457 ; If you want to match usernames against an attribute other than uid,
458 ; specify it here.
459 ; LDAP_SEARCH_FIELD = sAMAccountName
460
461 ; IMAP authentication options:
462 ;
463 ; The IMAP server to check usernames from.  Defaults to localhost.
464 ;
465 ; Some IMAP_AUTH_HOST samples:
466 ;   "localhost", "localhost:143/imap/notls", 
467 ;   "localhost:993/imap/ssl/novalidate-cert" (SuSE refuses non-SSL conections)
468 ; IMAP_AUTH_HOST = localhost:143/imap/notls
469
470 ; POP3 authentication options:
471 ;
472 ; Host to connect to.
473 ; POP3_AUTH_HOST = localhost:110
474
475 ; Port to connect. Deprecated: Use POP3_AUTH_HOST:<port> instead
476 ; POP3_AUTH_PORT = 110
477
478 ; File authentication options:
479 ;
480 ; File to read for authentication information.
481 ; Popular choices are /etc/shadow and /etc/httpd/.htpasswd
482 ; AUTH_USER_FILE = /etc/shadow
483
484 ; Defines whether the user is able to change their own password via PHPWiki.
485 ; Note that this means that the webserver user must be able to write to the
486 ; file specified in AUTH_USER_FILE.
487 ; AUTH_USER_FILE_STORABLE = false
488
489 ; Session Auth:
490 ; Name of the session variable which holds the already authenticated username
491 ; AUTH_SESS_USER = userid
492 ; Which level will the user be? 1 = Bogo or 2 = Pass
493 ; AUTH_SESS_LEVEL = 2
494
495 ; Group membership.  PHPWiki supports defining permissions for a group as
496 ; well as for individual users.  This defines how group membership information
497 ; is obtained.  Supported values are:
498 ;
499 ;       NONE            group membership is not supported.
500 ;       WIKIPAGE        Defined in the metadata of a wiki page.
501 ;       DB              Stored in an ADODB or PearDB database.
502 ;       FILE            Flatfile.
503 ;       LDAP            Query LDAP to find the information.
504 GROUP_METHOD = WIKIPAGE
505
506 ; For GROUP_METHOD = FILE, the file given below is referenced to obtain
507 ; group membership information.  It should be in the same format as the
508 ; standard unix /etc/groups(5) file.
509 ; AUTH_GROUP_FILE = /etc/groups
510
511 ; External database authentication and authorization.
512 ;
513 ; If USER_AUTH_ORDER includes Db, or GROUP_METHOD = DB, the options listed
514 ; below define the SQL queries used to obtain the information out of the
515 ; database, and (in some cases) store the information back to the DB.
516 ;
517 ; The options appropriate for each query are currently undocumented, and
518 ; you should not be surprised if things change mightily in the future.
519 ;
520 ; A database DSN to connect to.  Defaults to the DSN specified for the Wiki
521 ; as a whole.
522 ; DBAUTH_AUTH_DSN = mysql://wikiuser:@localhost/phpwiki
523 ;
524 ; USER/PASSWORD queries
525 ;
526 ; Check to see if the supplied username/password pair is OK
527 ;
528 ; plaintext passwords:
529 ; DBAUTH_AUTH_CHECK = "SELECT IF(passwd='$password',1,0) as ok FROM user WHERE userid='$userid'"
530 ;
531 ; database-hashed passwords (more secure):
532 ; DBAUTH_AUTH_CHECK = "SELECT IF(passwd=PASSWORD('$password'),1,0) as ok FROM user WHERE userid='$userid'"
533 DBAUTH_AUTH_CRYPT_METHOD = plain
534
535 ; If you want to use Unix crypt()ed passwords, you can use DBAUTH_AUTH_CHECK
536 ; to get the password out of the database with a simple SELECT query, and
537 ; specify DBAUTH_AUTH_USER_EXISTS and DBAUTH_AUTH_CRYPT_METHOD:
538 ; DBAUTH_AUTH_CHECK = SELECT password AS password FROM user where userid='$userid'
539 ; DBAUTH_AUTH_USER_EXISTS = SELECT userid FROM user WHERE userid='$userid'
540 ; DBAUTH_AUTH_CRYPT_METHOD = crypt
541 ;
542 ; Update the user's authentication credential.  If this is not defined but
543 ; DBAUTH_AUTH_CHECK is, then the user will be unable to update their
544 ; password.
545 ;
546 ; Plaintext passwords:
547 ; DBAUTH_AUTH_UPDATE = UPDATE user SET passwd='$password' WHERE userid='$userid'
548 ; Database-hashed passwords:
549 ; DBAUTH_AUTH_UPDATE = UPDATE user SET passwd=PASSWORD('$password') WHERE userid='$userid'
550 ;
551 ; Allow the user to create their own account.
552 ; DBAUTH_AUTH_CREATE = "INSERT INTO user SET passwd=PASSWORD('$password'),userid='$userid'"
553
554 ; USER/PREFERENCE queries
555 ;
556 ; If you choose to store your preferences in an external database, enable
557 ; the following queries.  Note that if you choose to store user preferences
558 ; in the 'user' table, only registered users get their prefs from the database,
559 ; self-created users do not.  Better to use the special 'pref' table.
560 ;
561 ; The prefs field stores the serialized form of the user's preferences array,
562 ; to ease the complication of storage.
563 ; DBAUTH_PREF_SELECT = SELECT prefs FROM user WHERE userid='$userid'
564 ; DBAUTH_PREF_SELECT = SELECT prefs FROM pref WHERE userid='$userid'
565
566 ; Update the user's preferences
567 ; DBAUTH_PREF_UPDATE = UPDATE user SET prefs='$pref_blob' WHERE userid='$userid'
568 ; DBAUTH_PREF_UPDATE = "REPLACE INTO pref SET prefs='$pref_blob',userid='$userid'"
569
570 ; USERS/GROUPS queries
571 ;
572 ; You can define 1:n or n:m user<=>group relations, as you wish.
573 ;
574 ; Sample configurations:
575 ;  only one group per user (1:n):
576 ;   DBAUTH_IS_MEMBER = SELECT user FROM user WHERE user='$userid' AND group='$groupname'
577 ;   DBAUTH_GROUP_MEMBERS = SELECT user FROM user WHERE group='$groupname'
578 ;   DBAUTH_USER_GROUPS = SELECT group FROM user WHERE user='$userid'
579 ;  multiple groups per user (n:m):
580 ;   DBAUTH_IS_MEMBER = SELECT userid FROM member WHERE userid='$userid' AND groupname='$groupname'
581 ;   DBAUTH_GROUP_MEMBERS = SELECT DISTINCT userid FROM member WHERE groupname='$groupname'
582 ;   DBAUTH_USER_GROUPS = SELECT groupname FROM member WHERE userid='$userid'
583
584 ; A interim page which gets displayed on every edit attempt
585 EDITING_POLICY = EditingPolicy
586
587 ;========================================================================
588 ; Part Four: Page appearance and layout
589 ;========================================================================
590
591 ; THEMES
592 ;
593 ; Most of the page appearance is controlled by files in the theme
594 ; subdirectory.
595 ;
596 ; There are a number of pre-defined themes shipped with PhpWiki.
597 ; Or you may create your own (e.g. by copying and then modifying one of
598 ; stock themes.)
599 ;
600 ; The complete list of installed themes can be found by doing 'ls themes/'
601 ; from the root of your PHPWiki installation.
602 THEME = default
603 ; THEME = MacOSX
604 ; THEME = smaller
605 ; THEME = Wordpress
606 ; THEME = Portland
607 ; THEME = Hawaiian
608 ; THEME = Sidebar
609 ; THEME = wikilens
610
611 ; Select a valid charset name to be inserted into the xml/html pages,
612 ; and to reference links to the stylesheets (css). For more info see:
613 ; <http://www.iana.org/assignments/character-sets>. Note that PhpWiki
614 ; has been extensively tested only with the latin1 (iso-8859-1)
615 ; character set.
616 ;
617 ; If you change the default from iso-8859-1 PhpWiki may not work
618 ; properly and will require code modifications, at the very least you
619 ; will have to convert the files in pgsrc or locale/xx/pgsrc to
620 ; match!
621 ;
622 ; Character sets similar to iso-8859-1 may work with little or no
623 ; modification depending on your setup. The database must also
624 ; support the same charset, and of course the same is true for the
625 ; web browser. (Some work is in progress hopefully to allow more
626 ; flexibility in this area in the future).
627 CHARSET = iso-8859-1
628
629 ; Select your language/locale - default language is "en" for English.
630 ; Other languages available:
631 ; English "en"  (English    - HomePage)
632 ; Dutch   "nl" (Nederlands - ThuisPagina)
633 ; Spanish "es" (Español    - PáginaPrincipal)
634 ; French  "fr" (Français   - Accueil)
635 ; German  "de" (Deutsch    - StartSeite)
636 ; Swedish "sv" (Svenska    - Framsida)
637 ; Italian "it" (Italiano   - PaginaPrincipale)
638 ; Japanese "ja" (Japanese   - ¥Û¡¼¥à¥Ú¡¼¥¸)
639 ;
640 ; If you set DEFAULT_LANGUAGE to the empty string, your system's
641 ; default language (as determined by the applicable environment
642 ; variables) will be used.
643 ;
644 DEFAULT_LANGUAGE = en
645
646 ; WIKI_PGSRC -- specifies the source for the initial page contents of
647 ; the Wiki. The setting of WIKI_PGSRC only has effect when the wiki is
648 ; accessed for the first time (or after clearing the database.)
649 ; WIKI_PGSRC can either name a directory or a zip file. In either case
650 ; WIKI_PGSRC is scanned for files -- one file per page.
651 WIKI_PGSRC = pgsrc
652
653 ; DEFAULT_WIKI_PGSRC is only used when the language is *not* the
654 ; default (English) and when reading from a directory: in that case
655 ; some English pages are inserted into the wiki as well.
656 ; DEFAULT_WIKI_PGSRC defines where the English pages reside.
657 ;
658 ; FIXME: is this really needed?  Can't we just copy these pages into
659 ; the localized pgsrc?
660 DEFAULT_WIKI_PGSRC = pgsrc
661 ; These are the pages which will get loaded from DEFAULT_WIKI_PGSRC.
662 DEFAULT_WIKI_PAGES = ReleaseNotes:SteveWainstead:TestPage
663
664 ;=========================================================================
665 ; Part Five: Mark-up options.
666 ;=========================================================================
667 ;
668 ; allowed protocols for links - be careful not to allow "javascript:"
669 ; URL of these types will be automatically linked.
670 ; within a named link [name|uri] one more protocol is defined: phpwiki
671 ; Separate each of the protocol names with a vertical pipe, and ensure there
672 ; is no extraneous whitespace.
673 ALLOWED_PROTOCOLS = http|https|mailto|ftp|news|nntp|ssh|gopher
674
675 ; URLs ending with the following extension should be inlined as images.
676 ; Specify as per ALLOWED_PROTOCOLS
677 INLINE_IMAGES = png|jpg|gif
678
679 ; Perl regexp for WikiNames ("bumpy words")
680 ; (?<!..) & (?!...) used instead of '\b' because \b matches '_' as well
681 WIKI_NAME_REGEXP = "(?<![[:alnum:]])(?:[[:upper:]][[:lower:]]+){2,}(?![[:alnum:]])"
682
683 ; Defaults to '/', but '.' was also used.
684 SUBPAGE_SEPARATOR = /
685
686 ; InterWiki linking -- wiki-style links to other wikis on the web
687 ;
688 ; The map will be taken from a page name InterWikiMap.
689 ; If that page is not found (or is not locked), or map
690 ; data can not be found in it, then the file specified
691 ; by INTERWIKI_MAP_FILE (if any) will be used.
692 INTERWIKI_MAP_FILE = lib/interwiki.map
693
694 ; Display a warning if the internal lib/interwiki.map is used, and 
695 ; not the public InterWikiMap page. This file is not readable from outside.
696 WARN_NONPUBLIC_INTERWIKIMAP = false
697
698 ; Regexp used for automatic keyword extraction.
699 ;
700 ; Any links on a page to pages whose names match this regexp will
701 ; be used keywords in the keywords meta tag.  (This is an aid to
702 ; classification by search engines.)  The value of the match is
703 ; used as the keyword.
704 ;
705 ; The default behavior is to match Category* and Topic* links.
706 KEYWORDS = Category:Topic
707 ;KEYWORD_LINK_REGEXP = "(?<=^\'. join(\'|^\', $keywords) . \')[[:upper:]].*$"
708
709 ; Author and Copyright Site Navigation Links
710 ;
711 ; These will be inserted as <link rel> tags in the html header of
712 ; every page, for search engines and for browsers like Mozilla which
713 ; take advantage of link rel site navigation.
714 ;
715 ; If you have your own copyright and contact information pages change
716 ; these as appropriate.
717 COPYRIGHTPAGE_TITLE = GNU General Public License
718 COPYRIGHTPAGE_URL = http://www.gnu.org/copyleft/gpl.html#SEC1
719 AUTHORPAGE_TITLE = The PhpWiki Programming Team
720 AUTHORPAGE_URL = http://phpwiki.sourceforge.net/phpwiki/ThePhpWikiProgrammingTeam
721
722
723 ;==========================================================================
724 ; Part Six: URL options.
725 ;==========================================================================
726 ;
727 ; You can probably skip this section.
728
729 ; The following section contains settings which you can use to tailor
730 ; the URLs which PhpWiki generates.
731 ;
732 ; Any of these parameters which are left undefined will be deduced
733 ; automatically. You need only set them explicitly if the
734 ; auto-detected values prove to be incorrect.
735 ;
736 ; In most cases the auto-detected values should work fine, so
737 ; hopefully you don't need to mess with this section.
738 ;
739 ; In case of local overrides of short placeholders, which themselves 
740 ; include index.php, we check for most constants. See '/wiki'.
741 ; We can override DATA_PATH and PHPWIKI_DIR to support multiple phpwiki 
742 ; versions (for development), but most likely other values like 
743 ; THEME, LANG and DbParams for a WikiFarm.
744
745 ; Canonical name and httpd port of the server on which this PhpWiki
746 ; resides.
747 ;/
748 ;SERVER_NAME = some.host.com
749 ;SERVER_PORT = 80
750
751 ; Relative URL (from the server root) of the PhpWiki
752 ; script.
753 ;SCRIPT_NAME = /some/where/index.php
754
755 ; URL of the PhpWiki install directory.  (You only need to set this
756 ; if you've moved index.php out of the install directory.)  This can
757 ; be either a relative URL (from the directory where the top-level
758 ; PhpWiki script is) or an absolute one.
759 ;DATA_PATH = /home/user/phpwiki
760
761 ; Path to the PhpWiki install directory.  This is the local
762 ; filesystem counterpart to DATA_PATH.  (If you have to set
763 ; DATA_PATH, your probably have to set this as well.)  This can be
764 ; either an absolute path, or a relative path interpreted from the
765 ; directory where the top-level PhpWiki script (normally index.php)
766 ; resides.
767 ;PHPWIKI_DIR = /home/user/public_html/phpwiki
768
769 ; PhpWiki will try to use short urls to pages, eg 
770 ; http://www.example.com/index.php/HomePage
771 ; If you want to use urls like 
772 ; http://www.example.com/index.php?pagename=HomePage
773 ; then define 'USE_PATH_INFO' as false by uncommenting the line below.
774 ; NB:  If you are using Apache >= 2.0.30, then you may need to to use
775 ; the directive "AcceptPathInfo On" in your Apache configuration file
776 ; (or in an appropriate <.htaccess> file) for the short urls to work:  
777 ; See http://httpd.apache.org/docs-2.0/mod/core.html#acceptpathinfo
778
779 ; See also http://phpwiki.sourceforge.net/phpwiki/PrettyWiki for more ideas
780 ; on prettifying your urls.
781 ;
782 ; Default: PhpWiki will try to divine whether use of PATH_INFO
783 ; is supported in by your webserver/PHP configuration, and will
784 ; use PATH_INFO if it thinks that is possible.
785 ;USE_PATH_INFO = false
786
787 ; VIRTUAL_PATH is the canonical URL path under which your your wiki
788 ; appears. Normally this is the same as dirname(SCRIPT_NAME), however
789 ; using, e.g. apaches mod_actions (or mod_rewrite), you can make it
790 ; something different.
791 ;
792 ; If you do this, you should set VIRTUAL_PATH here.
793 ;
794 ; E.g. your phpwiki might be installed at at /scripts/phpwiki/index.php,
795 ; but  * you've made it accessible through eg. /wiki/HomePage.
796 ;
797 ; One way to do this is to create a directory named 'wiki' in your
798 ; server root. The directory contains only one file: an .htaccess
799 ; file which reads something like:
800 ;
801 ;    Action x-phpwiki-page /scripts/phpwiki/index.php
802 ;    SetHandler x-phpwiki-page
803 ;    DirectoryIndex /scripts/phpwiki/index.php
804 ;
805 ; In that case you should set VIRTUAL_PATH to '/wiki'.
806 ;
807 ; (VIRTUAL_PATH is only used if USE_PATH_INFO is true.)
808 ;/
809 ;VIRTUAL_PATH = /SomeWiki
810
811 ;===========================================================================
812 ; Part Seven: Miscellaneous settings
813 ;===========================================================================
814
815 ; Disable HTTP redirects.
816 ;
817 ; (You probably don't need to touch this.)
818 ;
819 ; PhpWiki uses HTTP redirects for some of it's functionality.
820 ; (e.g. after saving changes, PhpWiki redirects your browser to
821 ; view the page you just saved.)
822 ;
823 ; Some web service providers (notably free European Lycos) don't seem to
824 ; allow these redirects.  (On Lycos the result in an "Internal Server Error"
825 ; report.)  In that case you can set DISABLE_HTTP_REDIRECT to true.
826 ; (In which case, PhpWiki will revert to sneakier tricks to try to
827 ; redirect the browser...)
828 ;DISABLE_HTTP_REDIRECT = true