Many libraries are used to install koha on standalone PC. They turn off the koha server ( standalone PC) at the closing time of the library. But koha runs cronjob at 12 A.M. midnight for fine calculation process. In that case, koha could not be calculated for the overdue fine. We need to add a script to the crontab file to perform the fine calculation process at a specific time.
Open the terminal and apply the following commands
sudo su
(Enter password)
crontab -e
(Select the nano editor to open crontab)
Add the following line in the crontab file
10 10 * * * /etc/cron.daily/koha-common
*/30 * * * * /etc/cron.daily/koha-common
Save and exit
0 Comments