<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
  <title></title>
</head>
<body bgcolor="#ffffff" text="#000000">
Ista,<br>
<br>
Try replacing "127.0.1.1" with the IP address of your server (in your
koha apache config) and make sure you've added "Listen 8080" to
/etc/apache2/ports.conf.<br>
<br>
Also, your koha apache config should be symlinked from
/etc/apache2/sites-enabled.&nbsp; If it isn't, check the paths in the "sudo
ln -s /etc/koha/koha-httpd.conf /etc/apache2/sites-available/koha"
command.&nbsp; Make sure they match the paths on your server.<br>
<br>
I use Debian, but Ubuntu should be pretty similar.<br>
<br>
I had the same issue and replacing "127.0.1.1" with my server IP fixed
it.<br>
<br>
I also had to delete the "/etc/apache2/sites-enabled/default" file when
I recently installed 3.00.04_fixed*, though I've never had to do that
when installing previous versions.<br>
<br>
I'm not an apache expert, so I could be missing something.&nbsp; Good luck!<br>
<br>
*I used git, branch 3.0.x; my version actually reads 3.00.05.001 @
cgi-bin/koha/about.pl, but I think they're the same?<br>
<br>
<div class="moz-signature"><span
 style="font-size: 12px; font-family: Arial;">
<p>Cheers,</p>
<p>Christopher Curry<br>
Assistant Technical Librarian / Assistant IT Officer</p>
<p>American Philosophical Society<br>
105 South Fifth Street<br>
Philadelphia, PA 19106-3386<br>
Tel. (215) 599-4299</p>
<p><a href="mailto:ccurry@amphilsoc.org">ccurry@amphilsoc.org</a></p>
<p><strong>For technical support, please use <a
 href="mailto:helpdesk@amphilsoc.org"><span style="">helpdesk@amphilsoc.org</span></a></strong><br>
Main Library number: (215)440-3400<br>
APS website: <a href="http://www.amphilsoc.org">http://www.amphilsoc.org</a>
</p>
</span>
</div>
<br>
<br>
Ista Zahn wrote:
<blockquote
 cite="mid:f55e7cf50912160827s5fd899axd84b1c05ef33f177@mail.gmail.com"
 type="cite">
  <pre wrap="">Hi everyone,
I'm new to Koha, and to this list. I'm trying to set up Koha  (version
koha-3.00.04_fixed, downloaded from <a class="moz-txt-link-freetext" href="http://koha.org/">http://koha.org/</a>) for a very small
community library, and am running into trouble installing the
software. The server is running Ubuntu 8.10 (Intrepid). I followed the
installation instructions in the INSTALL.ubuntu file shipped with the
program to the letter, but when I run 'make test' I got the following
errors:

#   Failed test '5 of 3 pieces produced'
#   at t/Labels_split_ddcn.t line 30.
t/Labels_split_ddcn............NOK 64/82
#   Failed test '(MP3-CD F PARKER)[0]   matches: MP3-CD'
#   at t/Labels_split_ddcn.t line 35.
t/Labels_split_ddcn............NOK 66/82
#   Failed test '(MP3-CD F PARKER)[1]   matches: F'
#   at t/Labels_split_ddcn.t line 35.
t/Labels_split_ddcn............NOK 68/82
#   Failed test '(MP3-CD F PARKER)[2]   matches: PARKER'
#   at t/Labels_split_ddcn.t line 35.
# Looks like you failed 4 tests of 82.
t/Labels_split_ddcn............dubious
        Test returned status 4 (wstat 1024, 0x400)
DIED. FAILED tests 62, 64, 66, 68
        Failed 4/82 tests, 95.12% okay

I went ahead with 'make install' anyway, and followed the remaining
instructions. When I finished, I pointed my browser to &lt;MyDomain&gt;:8080
but it just says "The requested URL / was not found on this server."

My guess is that the problem is either related to the error message
above, or to my apache configuration. My apache config file is pasted
below. I'll be really grateful for any pointers on what to try next,
as I'm feeling pretty stuck at this point.

Thanks!
Ista

##########Apache config file##############
# Koha Apache Configuration Directives

#NameVirtualHost *

## OPAC
&lt;VirtualHost 127.0.1.1:80&gt;
   ServerAdmin  webmaster@prometheus
   DocumentRoot /var/www/koha/opac/htdocs
   ServerName prometheus
#  ServerAlias opac.mydomain.com
   ScriptAlias /cgi-bin/koha/ "/var/www/koha/opac/cgi-bin/opac/"
   ScriptAlias /index.html "/var/www/koha/opac/cgi-bin/opac/opac-main.pl"
   ScriptAlias /opac-search.pl "/var/www/koha/opac/cgi-bin/opac/search"
   ScriptAlias /search "/var/www/koha/opac/cgi-bin/opac/search"
   ErrorLog /var/www/koha/var/log/koha-opac-error_log
#  TransferLog /var/www/koha/var/log/koha-opac-access_log
   SetEnv KOHA_CONF "/var/www/koha/etc/koha-conf.xml"
   SetEnv PERL5LIB "/var/www/koha/lib"

#  Repeat this virtualhost stanza changing the following environment vars to
#  create multiple OPAC interfaces with custom css and/or search limits:
#  SetEnv OPAC_CSS_OVERRIDE mystyle.css
#  SetEnv OPAC_SEARCH_LIMIT branch:CODE
#  SetEnv OPAC_LIMIT_OVERRIDE 1

   Options +FollowSymLinks

   ErrorDocument 400 /cgi-bin/koha/errors/400.pl
   ErrorDocument 401 /cgi-bin/koha/errors/401.pl
   ErrorDocument 403 /cgi-bin/koha/errors/403.pl
   ErrorDocument 404 /cgi-bin/koha/errors/404.pl
   ErrorDocument 500 /cgi-bin/koha/errors/500.pl

#  Rewrite Rules
   RewriteEngine On
#  Uncomment to turn on rewrite logging
#  RewriteLog /var/www/koha/var/log/koha-opac-rewrite.log
#  RewriteLogLevel 1
   RewriteCond %{QUERY_STRING} (.*?)(?:[A-Za-z0-9_-]+)=&amp;(.*)
   RewriteRule (.+) $1?%1%2 [N,R,NE]

   RewriteRule ^/bib/([^\/]*)/?$ /cgi-bin/koha/opac-detail\.pl?bib=$1 [PT]
   RewriteRule ^/isbn/([^\/]*)/?$ /search?q=isbn:$1 [PT]
   RewriteRule ^/issn/([^\/]*)/?$ /search?q=issn:$1 [PT]
&lt;/VirtualHost&gt;

## Intranet
&lt;VirtualHost 127.0.1.1:8080&gt;
   ServerAdmin webmaster@prometheus
   DocumentRoot /var/www/koha/intranet/htdocs
   ServerName prometheus:8080
#  ServerAlias intranet.mydomain.com
   ScriptAlias /cgi-bin/koha/ "/var/www/koha/intranet/cgi-bin/"
   ScriptAlias /index.html "/var/www/koha/intranet/cgi-bin/mainpage.pl"
   ScriptAlias /search "/var/www/koha/intranet/cgi-bin/search.pl"
   ErrorLog /var/www/koha/var/log/koha-error_log
#  TransferLog /var/www/koha/var/log/koha-access_log
   SetEnv KOHA_CONF "/var/www/koha/etc/koha-conf.xml"
   SetEnv PERL5LIB "/var/www/koha/lib"
   Options +FollowSymLinks

   ErrorDocument 400 /cgi-bin/koha/errors/400.pl
   ErrorDocument 401 /cgi-bin/koha/errors/401.pl
   ErrorDocument 403 /cgi-bin/koha/errors/403.pl
   ErrorDocument 404 /cgi-bin/koha/errors/404.pl
   ErrorDocument 500 /cgi-bin/koha/errors/500.pl

   RewriteEngine On
#  Uncomment to turn on rewrite logging
#  RewriteLog /var/www/koha/var/log/koha-intranet-rewrite.log
#  RewriteLogLevel 1

   RewriteCond %{QUERY_STRING} (.*?)(?:[A-Za-z0-9_-]+)=&amp;(.*)
   RewriteRule (.+) $1?%1%2 [N,R,NE]
   RewriteRule ^/bib/([^\/]*)/?$ /cgi-bin/koha/detail\.pl?bib=$1 [PT]
   RewriteRule ^/isbn/([^\/]*)/?$ /search?q=isbn:$1 [PT]
   RewriteRule ^/issn/([^\/]*)/?$ /search?q=issn:$1 [PT]
&lt;/VirtualHost&gt;



  </pre>
</blockquote>
</body>
</html>