Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
about:dokuwiki [2023/06/01 20:23] – removed - external edit (Unknown date) 127.0.0.1 | about:dokuwiki [2024/02/11 13:57] (current) – [Table] Zyzonix | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ===== DokuWiki customizations for FIXES===== | ||
+ | ==== Changelog setting ==== | ||
+ | Our setting for changelog under [[: | ||
+ | <code bash> | ||
+ | <WRAP > | ||
+ | {{changes> | ||
+ | </ | ||
+ | </ | ||
+ | |||
+ | ==== Change height of editor window ==== | ||
+ | To set a custom default height of the editor windows of [[about: | ||
+ | <code bash> | ||
+ | jQuery(function() { | ||
+ | jQuery('# | ||
+ | }); | ||
+ | </ | ||
+ | <callout type=" | ||
+ | |||
+ | ----- | ||
+ | ==== URL-Rewriting ==== | ||
+ | |||
+ | To make the URL look more fancy, you can use URL-rewriting. Our configuration for this wiki looks like this: | ||
+ | |||
+ | **1.** Edit '' | ||
+ | <code bash> | ||
+ | |||
+ | '' | ||
+ | ^ Value ^ Description | ||
+ | | 0 | No URL-rewriting. Default setting | ||
+ | | 1 | Rewriting will be done by the webserver | ||
+ | | 2 | Rewriting will be done by [[about: | ||
+ | |||
+ | **2.** Then edit your '' | ||
+ | |||
+ | **'' | ||
+ | <code bash> | ||
+ | **'' | ||
+ | <code bash> | ||
+ | |||
+ | **3.** Edit your virtual host config: | ||
+ | Change the line beginning with '' | ||
+ | |||
+ | **4.** Then copy the '' | ||
+ | Then uncomment the following lines: | ||
+ | <code bash> | ||
+ | RewriteEngine on | ||
+ | |||
+ | RewriteRule ^_media/ | ||
+ | RewriteRule ^_detail/ | ||
+ | RewriteRule ^_export/ | ||
+ | RewriteRule ^$ doku.php | ||
+ | RewriteCond %{REQUEST_FILENAME} | ||
+ | RewriteCond %{REQUEST_FILENAME} | ||
+ | RewriteRule (.*) doku.php? | ||
+ | RewriteRule ^index.php$ | ||
+ | </ | ||
+ | |||
+ | **5.** Finally restart apache or httpd. | ||
+ | |||
+ | **Optional** To make Dokuwiki use slashes instead of colons for seperating the namespaces in the url, activate the configuration setting '' | ||
+ | {{: |