<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>

    <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
  </head>
  <body text="#000000" bgcolor="#ffffff">
    We had a request from our library teachers to limit OPAC searches to
    just the local branch/school, without requiring patron log-in. The
    apache conf that ships with Koha has some example info that would
    help set up multiple virtual hosts, but I didn't want to deal with
    going out and changing all of our OPAC station bookmarks (hey, I'm
    lazy :-) )<br>
    <br>
    Thanks to some help from Jared Camins on irc, we came up with the
    following. Adding it to the OPAC virtual host section allows us to
    select the branch limit based on subnet and/or IP address. Works a
    treat!<br>
    <br>
    <br>
    &nbsp;&nbsp; RewriteCond %{REMOTE_ADDR} ^10\.61\..*<br>
    &nbsp;&nbsp; RewriteRule ^(.*)$ - [E=OPAC_SEARCH_LIMIT:lo]<br>
    <br>
    &nbsp;&nbsp; RewriteCond %{REMOTE_ADDR} ^10\.14\..*<br>
    &nbsp;&nbsp; RewriteRule ^(.*)$ - [E=OPAC_SEARCH_LIMIT:pi]<br>
    <br>
    &nbsp;&nbsp; RewriteCond %{REMOTE_ADDR} ^10\.9\.12\.37<br>
    &nbsp;&nbsp; RewriteRule ^(.*)$ - [E=OPAC_SEARCH_LIMIT:es]<br>
    <br>
    Hope this helps someone else!<br>
    <br>
    <div class="moz-signature">-- <br>
      <font color="blue">Chris Hobbs</font><br>
      Director, Technology<br>
      New Haven Unified School District</div>
  --
This message has been checked by ESVA and is believed to be clean.
</body>
</html>