Difference between revisions of "Koha/Post-Installation"

From Libopedia
Jump to navigation Jump to search
Line 55: Line 55:
 
==Step 3 - Enable LDAP user ID and authentication==
 
==Step 3 - Enable LDAP user ID and authentication==
 
To do.
 
To do.
 
==Step 4 - Enable Plugins==
 
* http://kohageek.blogspot.com/2013/09/how-to-setup-plugin-system-in-koha.html
 
 
 
===Help===
 
===Help===
 
*http://perldoc.koha-community.org/C4/Auth_with_ldap.html
 
*http://perldoc.koha-community.org/C4/Auth_with_ldap.html
Line 64: Line 60:
 
*http://bywatersolutions.com/2012/07/09/koha-ldap
 
*http://bywatersolutions.com/2012/07/09/koha-ldap
 
*http://www.slideshare.net/ohiocore/koha-integration-ldap
 
*http://www.slideshare.net/ohiocore/koha-integration-ldap
 +
 +
==Step 4 - Enable Plugins==
 +
* http://kohageek.blogspot.com/2013/09/how-to-setup-plugin-system-in-koha.html
 +
 
  '''[[Koha|Return to Koha wiki page]]'''
 
  '''[[Koha|Return to Koha wiki page]]'''

Revision as of 13:39, 30 September 2013

Step 1 - Setup email delivery

  • Install mail delivery agent
sudo apt-get install postfix

When asked for type of configuration, select Internet with smarthost. The smarthost is your campus email server, for example at Stellenbosch University that server is: mail.sun.ac.za

  • Deliver koha user email to designated recipients
sudo nano /etc/aliases

See example below. Replace the example email addresses with your email addresses.

# Added by installer for initial user
root:	me@my.edu
koha:   me@my.edu, you@my.edu

After saving the file, run the following command.

sudo newaliases

Enable command line email utils

sudo apt-get install mailx

Send a test email to yourself, by typing and pressing enter.

mail -s "Test from KOHA server" root, me@my.edu

Type in some content for the email, then press CTL+d to deliver the email.

You can check the log at /var/log/mail.log for more info of delivery.

Help

Tips

Step 2 - Setup custom website style

  • Select the "ccsr" theme using the opacthemes parameter in the admin interface.
  • Setup the opacsmallimage in the admin interface.
  • See the highlighted red boxes in the screenshot below for customisable areas of the OPAC web interface.

Koha.png

  • The following folder contains the CCS files to style the OPAC client depending on which theme you selected.
/usr/share/koha/opac/htdocs/opac-tmpl
  • The following folder contains the CCS files to style the admin interface.
/usr/share/koha/intranet/htdocs/intranet-tmpl

Help


Step 3 - Enable LDAP user ID and authentication

To do.

Help

Step 4 - Enable Plugins

Return to Koha wiki page