Re: [Koha] Koha 3.4 on Ubuntu

2011-04-24 Thread ajesh
Initially I added the following lines to ports.conf. Listen 80 Listen 8080 NameVirtualHost*:80 NameVirtualHost*:8080 Then on executing the command >> sudo apache2ctl restart * Syntax error on line 10 of /etc/apache2/ports.conf: Invalid command

Re: [Koha] Koha 3.4 on Ubuntu

2011-04-24 Thread ajesh
Proceeding further and after carefully executing the last few steps mentioned at http://wiki.koha-community.org/wiki/Koha_on_Ubuntu when I try to open http://127.0.1.1:8080/, I am seeing this *** Software error: Access denied for user 'k

Re: [Koha] Koha 3.4 on Ubuntu

2011-04-24 Thread Chris Cormack
You are much better off using the INSTALL files that come in the tarball, INSTALL.ubuntu in your case. That error you are getting looks like you haven't set up the mysql user to match the username and password you chose when running perl Makefile.PL Chris On 24 Apr 2011 19:50, wrote: > Proceedin

Re: [Koha] Koha 3.4 on Ubuntu

2011-04-24 Thread Tomas Cohen Arazi
On Sun, Apr 24, 2011 at 4:03 AM, wrote: > > Initially I added the following lines to ports.conf. > > Listen 80 > Listen 8080 > NameVirtualHost*:80 > NameVirtualHost*:8080 Spaces are needed between 'NameVirtualHost' and the rest of the lines (i.e. *:80) NameVirtualHost *:80 NameVirtualHost *:8080