tips:maintenance
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
tips:maintenance [2015-06-11 17:05] – [Discussion] 170.215.91.164 | tips:maintenance [2023-10-10 20:28] (current) – Updated to fix errors with the fact if -e does not work for globs. staze | ||
---|---|---|---|
Line 2: | Line 2: | ||
Here are some tips to automate some of the day-to-day maintenance needed or recommended for DokuWiki. | Here are some tips to automate some of the day-to-day maintenance needed or recommended for DokuWiki. | ||
+ | |||
+ | See also the plugins: [[plugin: | ||
===== Keep Blacklist up to date ===== | ===== Keep Blacklist up to date ===== | ||
Line 9: | Line 11: | ||
===== Automatic cleanup script ===== | ===== Automatic cleanup script ===== | ||
- | It is recommended to set up some cleanup process for busy DokuWikis. The following [[wp> | + | It is recommended to set up some cleanup process for busy DokuWikis. The following [[wp> |
<file bash cleanup.sh> | <file bash cleanup.sh> | ||
#!/bin/bash | #!/bin/bash | ||
- | function | + | cleanup() |
{ | { | ||
local data_path=" | local data_path=" | ||
Line 20: | Line 22: | ||
# purge files older than ${retention_days} days from attic and media_attic (old revisions) | # purge files older than ${retention_days} days from attic and media_attic (old revisions) | ||
- | find " | + | find " |
# remove stale lock files (files which are 1-2 days old) | # remove stale lock files (files which are 1-2 days old) | ||
Line 30: | Line 32: | ||
# remove files older than ${retention_days} days from the cache | # remove files older than ${retention_days} days from the cache | ||
- | if [ -e " | + | if test -n " |
then | then | ||
- | find " | + | find " |
fi | fi | ||
} | } | ||
+ | |||
# cleanup DokuWiki installations (path to datadir, number of days) | # cleanup DokuWiki installations (path to datadir, number of days) | ||
Line 52: | Line 55: | ||
==== Windows -- warmzip ==== | ==== Windows -- warmzip ==== | ||
- | A script for cleaning out old files on Windows systems is [[http:// | + | A script for cleaning out old files on Windows systems is [[http:// |
I took the above suggestion to use '' | I took the above suggestion to use '' | ||
- | My favorite way to run cron jobs on Windows is [[http://www.kalab.com/freeware/pycron/pycron.htm|PyCron]]. | + | My favorite way to run cron jobs on Windows is [[https://sourceforge.net/projects/ |
<file dos dw-cleanup.bat> | <file dos dw-cleanup.bat> | ||
Line 81: | Line 84: | ||
==== Windows -- batch script ==== | ==== Windows -- batch script ==== | ||
+ | |||
This is another Windows command shell script for maintaining your dokuwiki base on a Windows environment. | This is another Windows command shell script for maintaining your dokuwiki base on a Windows environment. | ||
The script uses the free and open source utility find, which can be obtained via [[http:// | The script uses the free and open source utility find, which can be obtained via [[http:// | ||
Line 184: | Line 188: | ||
Example: Restore Playground every 30 min: | Example: Restore Playground every 30 min: | ||
- | 0,30 * * * * cp -pf / | + | 0,30 * * * * cp -f / |
Example: Restore all pages in [[: | Example: Restore all pages in [[: | ||
- | 0,30 * * * * cp -rpf / | + | 0,30 * * * * cp -rf / |
==== Problems with CAPTCHA plugin ==== | ==== Problems with CAPTCHA plugin ==== | ||
+ | |||
Using the CAPTCHA plugin and the recommended [[tips: | Using the CAPTCHA plugin and the recommended [[tips: | ||
Line 197: | Line 202: | ||
Example: Deletes Playground metafiles every 30 min: | Example: Deletes Playground metafiles every 30 min: | ||
0,30 * * * * rm -f / | 0,30 * * * * rm -f / | ||
+ | |||
===== When cronjob is not available ===== | ===== When cronjob is not available ===== | ||
Line 211: | Line 217: | ||
---- | ---- | ||
- | Could someone add the appropriate line for [[http:// | + | Could someone add the appropriate line for [[https:// |
---- | ---- | ||
Does the [[plugin: | Does the [[plugin: | ||
Line 278: | Line 284: | ||
</ | </ | ||
use this at your own risk. --- [[user> | use this at your own risk. --- [[user> | ||
+ | |||
+ | ---- | ||
+ | Cheers, I'd like to add that it is a good idea to clean up orphaned meta data, don't you think? | ||
+ | I do the following (in an R script): | ||
+ | -list all files in the pages directory recursively | ||
+ | -add a column ' | ||
+ | -in pagename exchange '/' | ||
+ | -do the same for the meta directory + exclude some additional files | ||
+ | -remove all entries from the meta-list from which the page name is in the pages-list | ||
+ | -delete all files left in the meta list | ||
+ | Of course one could add a time constraint on it so that you don't use metadata immediately. | ||
+ | |||
+ | Clemo // | ||
tips/maintenance.1434035128.txt.gz · Last modified: by 170.215.91.164