X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=doc%2FInstall.md;h=8f6067a875272064cf6e0bc4f23d448d50d1a6a6;hb=b0c7cc0211db7b2abf421e2793c8aeb7e3a165a9;hp=9b7b5a94726fc4be9b17ee4afb05a540859eeb12;hpb=8b9ce4a0ec3e03009e463e1cf9ce83b76af4354d;p=friendica.git diff --git a/doc/Install.md b/doc/Install.md index 9b7b5a9472..8f6067a875 100644 --- a/doc/Install.md +++ b/doc/Install.md @@ -94,19 +94,19 @@ Registration errors should all be recoverable automatically. If you get any *critical* failure at this point, it generally indicates the database was not installed correctly. You might wish to move/rename .htconfig.php to another name and empty (called 'dropping') the database tables, so that you can start fresh. -###Set up the poller +###Set up the worker -Set up a cron job or scheduled task to run the poller once every 5-10 minutes in order to perform background processing. +Set up a cron job or scheduled task to run the worker once every 5-10 minutes in order to perform background processing. Example: - cd /base/directory; /path/to/php include/poller.php + cd /base/directory; /path/to/php scripts/worker.php Change "/base/directory", and "/path/to/php" as appropriate for your situation. If you are using a Linux server, run "crontab -e" and add a line like the one shown, substituting for your unique paths and settings: - */10 * * * * cd /home/myname/mywebsite; /usr/bin/php include/poller.php + */10 * * * * cd /home/myname/mywebsite; /usr/bin/php scripts/worker.php You can generally find the location of PHP by executing "which php". If you run into trouble with this section please contact your hosting provider for assistance.