https://github.com/spacedrone404/doku-wiki-searcher
Search the library registry by specified criteria.
https://github.com/spacedrone404/doku-wiki-searcher
dokuwiki dokuwiki-template website website-template
Last synced: about 2 months ago
JSON representation
Search the library registry by specified criteria.
- Host: GitHub
- URL: https://github.com/spacedrone404/doku-wiki-searcher
- Owner: spacedrone404
- Created: 2024-06-20T16:03:09.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-06-20T16:30:37.000Z (11 months ago)
- Last Synced: 2025-02-07T05:25:52.616Z (4 months ago)
- Topics: dokuwiki, dokuwiki-template, website, website-template
- Language: PHP
- Homepage:
- Size: 33.4 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
Search the library registry by specified criteria.
Search for letters, numbers, phrases, whatever.Tested in > 8000 lines of text environment.
Powered by DokuWiki:
https://www.dokuwiki.org/dokuwikiMinimal system requirements: i3 / 2Gb RAM
Recommended system requirements: i5 / 4Gb RAM + SSD
Operating system: Windows 7 / Linux
Browser: Firefox 78 ESR and up
Technology stack: Apache, Html, Css, Markdown, Php, Js, Ajax, Batch, Power shell.
Windows users:
1] !run.cmd is only for Windows
2] To work out-of-the-box software should be placed into C:\dokuwiki\
Linux users:
1] Just start Apache with following configuration
```
Listen 8800
ServerName microapache
ServerRoot .
DocumentRoot ./../dokuwiki
ServerAdmin [email protected]# load apache modules
LoadModule access_compat_module modules/mod_access_compat.so
LoadModule authz_core_module modules/mod_authz_core.so
LoadModule dir_module modules/mod_dir.so
LoadModule mime_module modules/mod_mime.so
LoadModule rewrite_module modules/mod_rewrite.so# Load PHP module and add handler
LoadModule php7_module php/php7apache2_4.dll
AddHandler application/x-httpd-php .php# Configure the path to php.ini
PHPIniDir php# Increase Stacksize to 8MB but use fewer threads -> 192MB RAM usage
# see Issue #3ThreadStackSize 8388608
ThreadsPerChild 64AcceptPathInfo off
KeepAlive on
KeepAliveTimeout 15
TimeOut 30
DirectoryIndex index.html index.php# allow .htaccess overrides
AllowOverride All
AllowOverride None
```
2] And head on to http://localhost:8800