Author: Ken Favors
Crontab Info
Examples: https://crontab.guru/examples.html Info: https://crontab.guru/crontab.5.html for Nextcloud: https://docs.nextcloud.com/server/11/admin_manual/configuration_server/background_jobs_configuration.html Nextcloud better example: https://help.nextcloud.com/t/error-on-cron-php-execute-via-crontab-or-command-line/583/2 $ sudo -u www-data crontab -e then enter the…
How To Install Tesseract OCR For Nextant And Nextcloud
http://installion.co.uk/ubuntu/xenial/universe/t/tesseract-ocr/install/index.html https://github.com/tesseract-ocr/tesseract/wiki 1. Install tesseract-ocr $ sudo apt-get update $ sudo apt-get install tesseract-ocr To uninstall tesseract-ocr http://installion.co.uk/ubuntu/xenial/universe/t/tesseract-ocr/uninstall/index.html $ sudo…
How To Install Nextant Full Text Search For NextCloud
https://github.com/nextcloud/nextant/wiki and (links to) https://github.com/nextcloud/nextant/wiki/Setup-your-local-Solr-as-a-Service To install java depenencies: https://www.howtoforge.com/tutorial/how-to-install-and-configure-solr-on-ubuntu-1604/ 1. Update the system $ sudo apt-get update && apt-get…
Enabling Pretty Links In Nextcloud
https://bayton.org/2016/07/installing-nextcloud-on-ubuntu-16-04-lts-with-redis-apcu-apache/ Much like theming, pretty links aren’t mandatory, but they add to the overall aesthetics of the server. Most of…
How To Install Memcached
https://syscoding.com/tutorials/40/how-to-install-memcached-on-ubuntu-1604/ http://www.servermom.org/install-use-memcached-nginx-php-7-ubuntu-16-04/3670/ $ sudo apt-get update $ sudo apt-get install memcached $ sudo apt install php-memcached $ service memcached restart…
Configuring Memory Caching In Nextcloud
1. Install APCu and Redis: $ sudo apt install php-apcu redis-server php-redis $ sudo service apache2 restart 2. Edit…