[Koha-bugs] [Bug 10486] Allow external Z39.50 targets to be searched from the OPAC

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Sun Oct 20 19:41:41 CEST 2013


http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10486

--- Comment #16 from Jesse Weaver <jweaver at bywatersolutions.com> ---
(In reply to Bernardo Gonzalez Kriegel from comment #15)
> Trying to test.
> Is there any documentation of how to enable/configure pazpar2?
> I'm to the point that I need to know where to find "/pazpar2/search.pz2" file
> referenced in pazpar2_init on line 72

Ah, yes. The installer's template configuration files have been updated, but
here's the changes you need to make to an existing install (none of these will
break existing functionality):

  * Change the two lines in the Apache .conf that read:

    <DirectoryMatch "/home/feoh3/p/koha/koha-tmpl/.*/(modules|xslt|includes)">

    to read:

    <DirectoryMatch "/home/feoh3/p/koha/koha-tmpl/.*/(modules|includes)">

  * Make sure that the proxy and proxy-http modules are enabled in Apache.
  * If you haven't already, install Pazpar2:
    * Get the packages installed.
    * Copy the configuration files from the Koha source to someplace
convenient.
    * Modify pazpar2.xml to listen on an open port and point at the directory
you just installed the files to.
    * Change __ZEBRA_MARC_FORMAT__ in koha-biblios.xml or generic-settings.xml
to marc21 or unimarc as appropriate.
  * Change the first line in koha-biblios.xml file (if you have it) in the
Pazpar2 directory to read:
    <settings target="*">
  * Copy the new *-work-groups.xsl files to your Pazpar2 directory.
  * Start pazpar2.
  * Add the following lines to your Apache configuration under your OPAC
VirtualHost:

    <Proxy *>
        AddDefaultCharset off
        Order deny,allow
        Allow from all
    </Proxy>

    ProxyRequests off
    ProxyPass /pazpar2/search.pz2 http://localhost:PORT/search.pz2

    replacing PORT with the port you configured Pazpar2 to listen on.
  * Restart Apache.

-- 
You are receiving this mail because:
You are watching all bug changes.


More information about the Koha-bugs mailing list