mirror of
https://github.com/YunoHost-Apps/pmwiki_ynh.git
synced 2024-09-03 20:06:40 +02:00
17 lines
No EOL
579 B
PHP
17 lines
No EOL
579 B
PHP
<?php if (!defined('PmWiki')) exit();
|
|
$WikiTitle = "My New Wiki";
|
|
#$PageLogoUrl = "http://example.com/mylogo.gif";
|
|
|
|
# Uncomment and correct these if PmWiki fails to detect the browser-reachable URLs
|
|
#$ScriptUrl = 'http://example.com/pmwiki/pmwiki.php';
|
|
#$PubDirUrl = 'http://example.com/pmwiki/pub';
|
|
|
|
$DefaultPasswords['admin'] = pmcrypt('__PASSWORD__');
|
|
|
|
$EnableUpload = 1;
|
|
$DefaultPasswords['upload'] = pmcrypt('secrettwo');
|
|
|
|
# Uncomment and change these if your server is not in your timezone
|
|
date_default_timezone_set('__TIMEZONE__');
|
|
|
|
$TimeFmt = '%B %d, %Y, at %I:%M %p %Z'; |