Problem: I've upgraded Koha and now I'm getting errors with the message Can not locate Template.pm.
Solution: Exit the Koha Management Console and execute this command: sudo apt-get install libtemplate-perl
Problem: The Koha Management Console reports that an IP Address was not found.
Solution:
- Exit the KMC and execute this command: sudo sh -c "cat /dev/null > /etc/udev/rules.d/70-persistent-net.rules"
- Reboot
Problem: I would like to update the version of Koha installed in the Virtual Appliance
Solution: Use the power of Git to upgrade with ease!
- Log in to the console as 'koha'
- cd kohaclone
- git fetch origin
- git checkout origin/master ( for the latest version ) OR git checkout v3.02.00-alpha2 ( for the 3.2 alpha )
- git branch -M master old_master
- git branch master
- git checkout master