[Koha-bugs] [Bug 5853] New: koha-httpd file missing directory access

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Fri Mar 11 03:14:02 CET 2011


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

             Bug #: 5853
           Summary: koha-httpd file missing directory access
    Classification: Unclassified
 Change sponsored?: ---
           Product: Koha
           Version: rel_3_2
          Platform: PC
        OS/Version: Linux
            Status: NEW
          Severity: normal
          Priority: P5
         Component: Installation and upgrade (command-line installer)
        AssignedTo: gmcharlt at gmail.com
        ReportedBy: tdavis at uttyler.edu
         QAContact: koha-bugs at lists.koha-community.org


Every time I have installed Koha I have had to fix this.  After symlinking the
koha-httpd.conf file to the apache/sites-enabled I have to add directory access
for /usr/local/koha/opac/htdocs and /usr/local/koha/intranet/htdocs.  This is
not in the install file for ubuntu and it seems like it is a bug.  

the complete fix for me was to add:

 <Directory "/usr/local/koha/opac/htdocs">
      Options Indexes FollowSymLinks
      AllowOverride None
      Order allow,deny
      Allow from all
 </Directory>

to the Virtualhost on *:80

and to add:

 <Directory "/usr/local/koha/intranet/htdocs">
      Options Indexes FollowSymLinks
      AllowOverride None
      Order allow,deny
      Allow from all
 </Directory>

to the virtual host on *:8080

-- 
Configure bugmail: http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA Contact for the bug.


More information about the Koha-bugs mailing list