<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://k2.ixota.com/index.php?action=history&amp;feed=atom&amp;title=DokuWiki</id>
	<title>DokuWiki - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://k2.ixota.com/index.php?action=history&amp;feed=atom&amp;title=DokuWiki"/>
	<link rel="alternate" type="text/html" href="https://k2.ixota.com/index.php?title=DokuWiki&amp;action=history"/>
	<updated>2026-06-26T12:57:00Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.33.1</generator>
	<entry>
		<id>https://k2.ixota.com/index.php?title=DokuWiki&amp;diff=4580&amp;oldid=prev</id>
		<title>Kenneth: /* URL Rewriting */</title>
		<link rel="alternate" type="text/html" href="https://k2.ixota.com/index.php?title=DokuWiki&amp;diff=4580&amp;oldid=prev"/>
		<updated>2018-01-23T21:36:41Z</updated>

		<summary type="html">&lt;p&gt;&lt;span dir=&quot;auto&quot;&gt;&lt;span class=&quot;autocomment&quot;&gt;URL Rewriting&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;== DokuWiki ==&lt;br /&gt;
&lt;br /&gt;
Really really easy wiki to setup and use!&lt;br /&gt;
&lt;br /&gt;
== Manual ==&lt;br /&gt;
&lt;br /&gt;
https://www.dokuwiki.org/manual&lt;br /&gt;
&lt;br /&gt;
== Download ==&lt;br /&gt;
&lt;br /&gt;
https://download.dokuwiki.org/&lt;br /&gt;
&lt;br /&gt;
== Template Themes ==&lt;br /&gt;
&lt;br /&gt;
DokuWiki&amp;#039;s layout can be customized through templates (aka. skins or themes). https://www.dokuwiki.org/template&lt;br /&gt;
&lt;br /&gt;
== Install ==&lt;br /&gt;
&lt;br /&gt;
 # ubuntu&lt;br /&gt;
 apt-get install apache2 php libapache2-mod-php php-mbstring php-xml imagemagick&lt;br /&gt;
 # centos&lt;br /&gt;
 yum install httpd php ImageMagick&lt;br /&gt;
&lt;br /&gt;
 #wget https://download.dokuwiki.org/src/dokuwiki/dokuwiki-stable.tgz&lt;br /&gt;
 #tar -zvxf dokuwiki-stable.tgz&lt;br /&gt;
 #cd dokuwiki-2016*&lt;br /&gt;
&lt;br /&gt;
 wget https://download.dokuwiki.org/out/dokuwiki-c5525093cf2c4f47e2e5d2439fe13964.tgz -O dokuwiki.tgz&lt;br /&gt;
 tar -zvxf dokuwiki.tgz&lt;br /&gt;
 cd dokuwiki&lt;br /&gt;
&lt;br /&gt;
Permissions:&lt;br /&gt;
 # ubuntu&lt;br /&gt;
 sudo chown -R www-data conf data&lt;br /&gt;
 # centos&lt;br /&gt;
 sudo chown -R apache conf data&lt;br /&gt;
&lt;br /&gt;
 # ubuntu&lt;br /&gt;
 sudo chown -R www-data lib/plugins lib/tpl&lt;br /&gt;
 # centos&lt;br /&gt;
 sudo chown -R apache lib/plugins lib/tpl&lt;br /&gt;
&lt;br /&gt;
 # alt 1&lt;br /&gt;
 find conf -type d -exec chmod g+s {} \;&lt;br /&gt;
 find data -type d -exec chmod g+s {} \;&lt;br /&gt;
 find lib/plugins -type d -exec chmod g+s {} \;&lt;br /&gt;
 find lib/tpl -type d -exec chmod g+s {} \;&lt;br /&gt;
 chown -R www-data conf data&lt;br /&gt;
&lt;br /&gt;
 # alt 2&lt;br /&gt;
 # or really relaxed bad permissions&lt;br /&gt;
 chmod -R o+w conf data&lt;br /&gt;
 chmod -R o+w lib/plugins lib/tpl&lt;br /&gt;
 &lt;br /&gt;
Load install.php:&lt;br /&gt;
 http://[host]/dokuwiki/install.php&lt;br /&gt;
&lt;br /&gt;
After configuring, delete install.php:&lt;br /&gt;
 # mv install.php install.php.disabled&lt;br /&gt;
 rm install.php&lt;br /&gt;
&lt;br /&gt;
Cleanup:&lt;br /&gt;
 find . -name &amp;quot;_dummy&amp;quot; -exec rm {} \;&lt;br /&gt;
 rm -rf data/pages/*&lt;br /&gt;
&lt;br /&gt;
== Apache ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;VirtualHost *:80&amp;gt;&lt;br /&gt;
        ServerName doku.oeey.com&lt;br /&gt;
&lt;br /&gt;
        DocumentRoot /www/dokuwiki&lt;br /&gt;
&lt;br /&gt;
        &amp;lt;Directory /www/dokuwiki/&amp;gt;&lt;br /&gt;
                Options Indexes FollowSymLinks MultiViews&lt;br /&gt;
                AllowOverride all&lt;br /&gt;
                Order allow,deny&lt;br /&gt;
                Allow from all&lt;br /&gt;
        &amp;lt;/Directory&amp;gt;&lt;br /&gt;
&amp;lt;/VirtualHost&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Security ==&lt;br /&gt;
&lt;br /&gt;
Reverse Heading Levels (Like Wikipedia)&lt;br /&gt;
&lt;br /&gt;
install:permissions [DokuWiki] - https://www.dokuwiki.org/install:permissions&lt;br /&gt;
&lt;br /&gt;
 sudo chown -R apache conf data&lt;br /&gt;
 sudo chown -R www-data conf data&lt;br /&gt;
&lt;br /&gt;
Extension Manager:&lt;br /&gt;
 sudo chown -R www-data lib/plugins&lt;br /&gt;
&lt;br /&gt;
Theme Manager:&lt;br /&gt;
 sudo chown -R www-data lib/tpl&lt;br /&gt;
&lt;br /&gt;
== Configure ==&lt;br /&gt;
&lt;br /&gt;
http://doku.oeey.com/doku.php?id=start&amp;amp;do=admin&amp;amp;page=config&lt;br /&gt;
&lt;br /&gt;
Basic:&lt;br /&gt;
* Wiki title aka. your wiki&amp;#039;s name: [wiki name]&lt;br /&gt;
* Page name to use as the starting point for each namespace: &amp;quot;home&amp;quot;&lt;br /&gt;
** Warning, this will be the default page for all namespaces!&lt;br /&gt;
* &amp;lt;s&amp;gt;Tagline (if template supports it): &amp;quot;my tagline&amp;quot;&amp;lt;/s&amp;gt;&lt;br /&gt;
* &amp;lt;s&amp;gt;Server URL: http://doku.oeey.com&amp;lt;/s&amp;gt;&lt;br /&gt;
* dmode: 02775 (from 0755)&lt;br /&gt;
* fmode: 0664 (from 0644)&lt;br /&gt;
&lt;br /&gt;
Display:&lt;br /&gt;
* Use hierarchical breadcrumbs (you probably want to disable the above option then): [X]&lt;br /&gt;
* By default, DokuWiki will show all namespaces in the sitemap. [X]&lt;br /&gt;
&lt;br /&gt;
Media:&lt;br /&gt;
* Path to ImageMagick&amp;#039;s convert tool: /usr/bin/convert&lt;br /&gt;
&lt;br /&gt;
Editing:&lt;br /&gt;
* htmlok - securityAllow embedded HTML [X]&lt;br /&gt;
&lt;br /&gt;
Advanced:&lt;br /&gt;
* Use nice URLs: .htaccess&lt;br /&gt;
* Use slash as namespace separator in URLs: [X]&lt;br /&gt;
&lt;br /&gt;
== URL Rewriting ==&lt;br /&gt;
&lt;br /&gt;
Enable rewrite:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Ubuntu&lt;br /&gt;
&amp;lt;Directory /var/www/html&amp;gt;&lt;br /&gt;
    #Options Indexes FollowSymLinks MultiViews&lt;br /&gt;
    Options -Indexes -MultiViews +FollowSymLinks&lt;br /&gt;
    AllowOverride all&lt;br /&gt;
    Order allow,deny&lt;br /&gt;
    allow from all&lt;br /&gt;
&amp;lt;/Directory&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
rewrite [DokuWiki] - https://www.dokuwiki.org/rewrite&lt;br /&gt;
&lt;br /&gt;
Turn:&lt;br /&gt;
 http://example.com/doku.php?id=page&lt;br /&gt;
&lt;br /&gt;
Into:&lt;br /&gt;
 http://example.com/page&lt;br /&gt;
&lt;br /&gt;
Directions:&lt;br /&gt;
# Go to Admin&lt;br /&gt;
# Open Configuration Manager&lt;br /&gt;
# Change Nice URLs option to .htaccess (use find, it&amp;#039;s far down)&lt;br /&gt;
# Underneath it, check the option to “Use slash as namespace separator in URLs”&lt;br /&gt;
# .htaccess&lt;br /&gt;
&lt;br /&gt;
doku folder:&lt;br /&gt;
 # hidden file&lt;br /&gt;
 cp .htaccess.dist .htaccess&lt;br /&gt;
&lt;br /&gt;
Apache:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
        &amp;lt;Directory /&amp;gt;&lt;br /&gt;
                AllowOverride All&lt;br /&gt;
        &amp;lt;/Directory&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
.htaccess: (uncomment the following)&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
RewriteEngine on&lt;br /&gt;
 &lt;br /&gt;
RewriteRule ^_media/(.*)              lib/exe/fetch.php?media=$1  [QSA,L]&lt;br /&gt;
RewriteRule ^_detail/(.*)             lib/exe/detail.php?media=$1  [QSA,L]&lt;br /&gt;
RewriteRule ^_export/([^/]+)/(.*)     doku.php?do=export_$1&amp;amp;id=$2  [QSA,L]&lt;br /&gt;
RewriteRule ^$                        doku.php  [L]&lt;br /&gt;
RewriteCond %{REQUEST_FILENAME}       !-f&lt;br /&gt;
RewriteCond %{REQUEST_FILENAME}       !-d&lt;br /&gt;
RewriteRule (.*)                      doku.php?id=$1  [QSA,L]&lt;br /&gt;
RewriteRule ^index.php$               doku.php&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Formatting ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Hello world&lt;br /&gt;
&lt;br /&gt;
new\\&lt;br /&gt;
line&lt;br /&gt;
&lt;br /&gt;
**bold**&lt;br /&gt;
&lt;br /&gt;
//italics//&lt;br /&gt;
&lt;br /&gt;
__underline__&lt;br /&gt;
&lt;br /&gt;
&amp;lt;del&amp;gt;string-through&amp;lt;/del&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;monospace&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;monospace\\&lt;br /&gt;
oooooooooo\\&lt;br /&gt;
iiiiiiiii&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
monospace&lt;br /&gt;
oooooooooo&lt;br /&gt;
iiiiiiiii&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;file&amp;gt;&lt;br /&gt;
monospace&lt;br /&gt;
oooooooooo&lt;br /&gt;
iiiiiiiii&lt;br /&gt;
&amp;lt;/file&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====== Level 1 Headline ======&lt;br /&gt;
&lt;br /&gt;
&amp;quot;=&amp;quot; = 7 - n&lt;br /&gt;
&lt;br /&gt;
===== Level 2 Headline =====&lt;br /&gt;
&lt;br /&gt;
==== Level 3 Headline ====&lt;br /&gt;
&lt;br /&gt;
=== Level 4 Headline ===&lt;br /&gt;
&lt;br /&gt;
== Level 5 Headline ==&lt;br /&gt;
&lt;br /&gt;
horizontal rule:&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
[[test]]&lt;br /&gt;
&lt;br /&gt;
[[test|internal page label]]&lt;br /&gt;
&lt;br /&gt;
[[http://www.google.com|External Link]]&lt;br /&gt;
&lt;br /&gt;
  - number item 1&lt;br /&gt;
  - number item 2&lt;br /&gt;
&lt;br /&gt;
  * item 1&lt;br /&gt;
  * item 2&lt;br /&gt;
&lt;br /&gt;
====== Images ======&lt;br /&gt;
&lt;br /&gt;
Internal Image: (centered)\\&lt;br /&gt;
{{wiki:dokuwiki-128.png}}&lt;br /&gt;
&lt;br /&gt;
Width:&lt;br /&gt;
{{wiki:dokuwiki-128.png?20}}&lt;br /&gt;
&lt;br /&gt;
Height:&lt;br /&gt;
{{wiki:dokuwiki-128.png?0x20}}&lt;br /&gt;
&lt;br /&gt;
WidthxHeight:&lt;br /&gt;
{{wiki:dokuwiki-128.png?30x20}}&lt;br /&gt;
&lt;br /&gt;
External Image: (centered)\\&lt;br /&gt;
{{ https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png |Google Title}}&lt;br /&gt;
&lt;br /&gt;
\\&lt;br /&gt;
\\&lt;br /&gt;
\\&lt;br /&gt;
\\&lt;br /&gt;
&lt;br /&gt;
width 10 image:\\&lt;br /&gt;
{{ https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png?100|Google Title }}&lt;br /&gt;
&lt;br /&gt;
Title:&lt;br /&gt;
{{image|title}}&lt;br /&gt;
&lt;br /&gt;
By using left or right whitespaces you can choose left, right or center alignment.&lt;br /&gt;
{{image }}&lt;br /&gt;
{{ image}}&lt;br /&gt;
{{ image }}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Templates ==&lt;br /&gt;
&lt;br /&gt;
template [DokuWiki] - https://www.dokuwiki.org/template&lt;br /&gt;
&lt;br /&gt;
:&amp;quot;DokuWiki&amp;#039;s layout can be customized through templates (aka. skins or themes). &amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
#    Just extract the downloaded template archive (usually a .zip or .tgz file) in the lib/tpl/ folder2).&lt;br /&gt;
#    Then select the template in the Config Manager by adjusting the template option.&lt;br /&gt;
&lt;br /&gt;
=== Bootie ===&lt;br /&gt;
&lt;br /&gt;
=== Bootstrap Simplified Template ===&lt;br /&gt;
&lt;br /&gt;
* https://github.com/badeendjuh/dokubootstrap-simplified&lt;br /&gt;
&lt;br /&gt;
* https://github.com/badeendjuh/dokubootstrap-simplified/archive/master.zip&lt;br /&gt;
&lt;br /&gt;
== Name Spaces ==&lt;br /&gt;
&lt;br /&gt;
namespaces [DokuWiki] - https://www.dokuwiki.org/namespaces&lt;br /&gt;
&lt;br /&gt;
Use &amp;quot;:&amp;quot; to separate name spaces&lt;br /&gt;
&lt;br /&gt;
&amp;lt;s&amp;gt;TODO: find out how to do &amp;#039;/&amp;#039; name spaces?&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Use slash for namespace ====&lt;br /&gt;
&lt;br /&gt;
you can use this option additionally to use a slash instead of a colon as namespace separator in URLs.&lt;br /&gt;
&lt;br /&gt;
config:useslash [DokuWiki] - https://www.dokuwiki.org/config:useslash&lt;br /&gt;
&lt;br /&gt;
=== Bread Crumbs ===&lt;br /&gt;
&lt;br /&gt;
Navigation Breakcrumbs (for name spaces)&lt;br /&gt;
&lt;br /&gt;
breadcrumbs [DokuWiki] - https://www.dokuwiki.org/breadcrumbs&lt;br /&gt;
&lt;br /&gt;
=== Name Space Table of Contents ===&lt;br /&gt;
&lt;br /&gt;
See [[#Table of Contents Plugin]]&lt;br /&gt;
&lt;br /&gt;
== Plugins ==&lt;br /&gt;
&lt;br /&gt;
=== Table of Contents Plugin ===&lt;br /&gt;
&lt;br /&gt;
plugin:nspages [DokuWiki] - https://www.dokuwiki.org/plugin:nspages&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;nspages&amp;gt;&lt;br /&gt;
&amp;lt;nspages pagename&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Install:&lt;br /&gt;
 cd doku/lib/plugins&lt;br /&gt;
 wget https://github.com/gturri/nspages/zipball/master -O nspages.zip&lt;br /&gt;
 unzip nspages.zip&lt;br /&gt;
 mv gturri-nspages-2a76987 nspages&lt;br /&gt;
&lt;br /&gt;
=== MRedirect Plugin ===&lt;br /&gt;
&lt;br /&gt;
Redirection plugin - any page containing nothing but a standard link will auto-redirect instantaneously&lt;br /&gt;
&lt;br /&gt;
plugin:mredirect [DokuWiki] - https://github.com/M0rtenB/dokuwiki-mredirect/zipball/master&lt;br /&gt;
&lt;br /&gt;
 cd doku/lib/plugins&lt;br /&gt;
 wget https://github.com/M0rtenB/dokuwiki-mredirect/zipball/master -O mredirect.zip&lt;br /&gt;
 unzip mredirect.zip&lt;br /&gt;
 mv M0rtenB-dokuwiki-mredirect-7dd0287 mredirect&lt;br /&gt;
&lt;br /&gt;
=== Tag Plugin ===&lt;br /&gt;
&lt;br /&gt;
Assign category tags to wiki pages&lt;br /&gt;
&lt;br /&gt;
Examples:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
    {{tag&amp;gt;tag1 tag2 tag3}}&lt;br /&gt;
    with namespaces: {{tag&amp;gt;ns1:tag1 ns1:tag2 ns2:subns1:tag3}}&lt;br /&gt;
    mutiple word tags: {{tag&amp;gt;tag1_with_multiple_words tag2 tag3_part}}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 cd doku/lib/plugins&lt;br /&gt;
 wget https://github.com/dokufreaks/plugin-tag/tarball/master -O tag.tar.gz&lt;br /&gt;
 tar -zvxf tag.tar.gz&lt;br /&gt;
 mv dokufreaks-plugin-tag-92d6176 tag&lt;br /&gt;
&lt;br /&gt;
plugin:tag [DokuWiki] - https://www.dokuwiki.org/plugin:tag&lt;br /&gt;
&lt;br /&gt;
=== Reverse Headings ===&lt;br /&gt;
&lt;br /&gt;
https://www.dokuwiki.org/plugin:creole&lt;br /&gt;
&lt;br /&gt;
Changes:&lt;br /&gt;
* Listblock&lt;br /&gt;
* Reverse Headings&lt;br /&gt;
* Linebreaks (dokuwiki linebreaks are correct in creole 1.0)&lt;br /&gt;
* Preformatted&lt;br /&gt;
* Tables&lt;br /&gt;
* Subscript&lt;br /&gt;
* Superscript&lt;br /&gt;
* Monospace&lt;br /&gt;
 &lt;br /&gt;
 cd doku/lib/plugins&lt;br /&gt;
 wget https://github.com/dokufreaks/plugin-creole/zipball/master -O creole.zip&lt;br /&gt;
 tar -zvxf creole.zip&lt;br /&gt;
 mv dokufreaks-plugin-creole-f36bf24 creole&lt;br /&gt;
&lt;br /&gt;
Markup precedence (after installing Creole)&lt;br /&gt;
&lt;br /&gt;
Settings: (my suggestions)&lt;br /&gt;
 Markup precedence: Creole&lt;br /&gt;
 Monospace behaviour: Use &amp;lt;tt&amp;gt; tag&lt;br /&gt;
 Replace a linebreak with: Linebreak&lt;br /&gt;
&lt;br /&gt;
References:&lt;br /&gt;
* faq:reverse_headers [DokuWiki] - https://www.dokuwiki.org/faq:reverse_headers&lt;br /&gt;
** I&amp;#039;d like to reverse the header syntax.&lt;br /&gt;
** It&amp;#039;s possible to reverse the header syntax by using the creole plugin&lt;br /&gt;
&lt;br /&gt;
=== CAPTCHA ===&lt;br /&gt;
&lt;br /&gt;
plugin:captcha [DokuWiki] - https://www.dokuwiki.org/plugin:captcha&lt;br /&gt;
&lt;br /&gt;
 cd doku/lib/plugins&lt;br /&gt;
 wget https://github.com/splitbrain/dokuwiki-plugin-captcha/zipball/master -O captcha.zip&lt;br /&gt;
 tar -zvxf captcha.zip&lt;br /&gt;
 mv captcha-* captcha&lt;br /&gt;
&lt;br /&gt;
=== Section Editing ===&lt;br /&gt;
&lt;br /&gt;
https://www.dokuwiki.org/plugin:editsections2&lt;br /&gt;
&lt;br /&gt;
The “editsections” plugin moves edit section buttons up to the heading they belongs to. Configurable for nested (hierarchical) or flat edit sections. Nested edit sections cover the same indentation level as their heading.&lt;br /&gt;
&lt;br /&gt;
Note: &amp;quot;If you prefer having your edit button beside the header, see the plugin [https://www.dokuwiki.org/plugin:editsections2 editsections2]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== Hacks ==&lt;br /&gt;
&lt;br /&gt;
=== Hide Footer ===&lt;br /&gt;
&lt;br /&gt;
Edit dokuwiki/lib/tpl/dokuwiki/tpl_footer.php&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&amp;lt;div class=&amp;quot;buttons&amp;quot;&amp;gt;&lt;br /&gt;
...&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
or &lt;br /&gt;
 empty the tpl_footer.php file&lt;br /&gt;
&lt;br /&gt;
http://www.inmotionhosting.com/support/edu/dokuwiki/change-dokuwiki-appearance/removing-footer-buttons-text&lt;br /&gt;
&lt;br /&gt;
=== Hide Last modified ===&lt;br /&gt;
&lt;br /&gt;
Comment out the tpl_pageinfo() call in the appropriate template file&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# lib/tpl/bootie/main.php - line 112&lt;br /&gt;
&lt;br /&gt;
&amp;lt;?php //tpl_pageinfo() ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Disabled Old Revisions ===&lt;br /&gt;
&lt;br /&gt;
Disable the button in the config&lt;br /&gt;
* Disable DokuWiki actions - Old revisions&lt;br /&gt;
&lt;br /&gt;
Old revisions will still be generated, but won&amp;#039;t be accessible.&lt;br /&gt;
&lt;br /&gt;
To disable generation of old revisions, comment out the io_writeWikiPage in the function saveOldRevision():&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
inc/common.php&lt;br /&gt;
1370c1370&lt;br /&gt;
&amp;lt;     io_writeWikiPage($newf, rawWiki($id), $id, $date);&lt;br /&gt;
---&lt;br /&gt;
&amp;gt;     //io_writeWikiPage($newf, rawWiki($id), $id, $date);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Issues ==&lt;br /&gt;
&lt;br /&gt;
=== utf8_encode is not available ===&lt;br /&gt;
&lt;br /&gt;
 PHP function utf8_encode is not available. Maybe your hosting provider disabled it for some reason&lt;br /&gt;
&lt;br /&gt;
Test:&lt;br /&gt;
 php -r &amp;#039;print utf8_encode(&amp;quot;fooo&amp;quot;);&amp;#039;&lt;br /&gt;
&lt;br /&gt;
References:&lt;br /&gt;
* DokuWiki&amp;#039;s installer says utf8_encode and utf8_decode are not available, any ideas how to fix this? : PHP - https://www.reddit.com/r/PHP/comments/39b68u/dokuwikis_installer_says_utf8_encode_and_utf8/&lt;br /&gt;
&lt;br /&gt;
=== Invalid command RewriteEngine ===&lt;br /&gt;
&lt;br /&gt;
.htaccess: Invalid command &amp;#039;RewriteEngine&amp;#039;, perhaps misspelled or defined by a module not included in the server configuration&lt;br /&gt;
&lt;br /&gt;
 # ln -s /etc/apache2/mods-available/rewrite.load /etc/apache2/mods-enabled/rewrite.load&lt;br /&gt;
&lt;br /&gt;
 sudo a2enmod rewrite &amp;amp;&amp;amp; sudo service apache2 restart&lt;br /&gt;
&lt;br /&gt;
apache - .htaccess: Invalid command &amp;#039;RewriteEngine&amp;#039;, perhaps misspelled or defined by a module not included in the server configuration - Stack Overflow - http://stackoverflow.com/questions/10144634/htaccess-invalid-command-rewriteengine-perhaps-misspelled-or-defined-by-a-m&lt;br /&gt;
&lt;br /&gt;
== keywords ==&lt;br /&gt;
&lt;br /&gt;
dokuwiki wiki document crm&lt;/div&gt;</summary>
		<author><name>Kenneth</name></author>
		
	</entry>
</feed>