[Koha-cvs] CVS: koha INSTALL,1.1.2.2,1.1.2.3 Hints,1.1.2.1,1.1.2.2

Pat Eyler pate at users.sourceforge.net
Thu Jun 6 16:43:45 CEST 2002


Update of /cvsroot/koha/koha
In directory usw-pr-cvs1:/tmp/cvs-serv22781

Modified Files:
      Tag: rel-1-2
	INSTALL Hints 
Log Message:
spelling and indentation fixes (mostly)

Index: INSTALL
===================================================================
RCS file: /cvsroot/koha/koha/INSTALL,v
retrieving revision 1.1.2.2
retrieving revision 1.1.2.3
diff -C2 -r1.1.2.2 -r1.1.2.3
*** INSTALL	6 Jun 2002 11:49:06 -0000	1.1.2.2
--- INSTALL	6 Jun 2002 14:43:40 -0000	1.1.2.3
***************
*** 1,15 ****
  Koha - Requirements and quick-start installation guide
  
! INSTALL document included with [Koha]
! 
! For information on how to install Koha without requiring multiple virtual servers - See KohaAllInOne. 
! For additional information on how your Configuration files should look see the Hints file.
  
  Important....
  To successfully use Koha you need some additional software:
  
! A webserver (It was built to work with Apache, but there is no reason it shouldnt work with any other webserver). 
  Mysql (You could intead use postgres, or another sql based database) 
! Perl (mod_perl isnt needed, tho koha should work with mod_perl but this hasnt been tested yet). 
  
  Perl Modules:
--- 1,15 ----
  Koha - Requirements and quick-start installation guide
  
! For additional information on how your Configuration files should look
! see the Hints file. 
  
  Important....
  To successfully use Koha you need some additional software:
  
! A webserver (It was built to work with Apache, but there is no reason
! it shouldn't work with any other webserver).  
  Mysql (You could intead use postgres, or another sql based database) 
! Perl (mod_perl isn't needed, though koha should work with mod_perl --
! note that this hasn't been tested yet).  
  
  Perl Modules:
***************
*** 20,24 ****
  DBD::mysql (or whatever database system you use) 
  AuthenDBI (if you want to use Database based authentication) 
! CDK (for the telnet interface not nessecary if you plan to use the web based circulation module) also requires installation of the C CDK libraries http://www.vexus.ca/CDK.html ( CDKModuleHasProblems ) 
  
  --------------------------------------------------------------------------------
--- 20,26 ----
  DBD::mysql (or whatever database system you use) 
  AuthenDBI (if you want to use Database based authentication) 
! CDK (for the telnet interface not necessary if you plan to use the web
! based circulation module) also requires installation of the C CDK
! libraries http://www.vexus.ca/CDK.html ( CDKModuleHasProblems )  
  
  --------------------------------------------------------------------------------
***************
*** 35,39 ****
  Log in to mysql: mysql -uroot -ppassword 
  
! To create a user called "koha" who has full administrative rights to the "Koha" database when autheicting from "localhost", enter the following on mysql command line:
  
  grant all privileges on Koha.* to koha at localhost identified by 'kohapassword'; 
--- 37,43 ----
  Log in to mysql: mysql -uroot -ppassword 
  
! To create a user called "koha" who has full administrative rights to
! the "Koha" database when autheicting from "localhost", enter the
! following on mysql command line: 
  
  grant all privileges on Koha.* to koha at localhost identified by 'kohapassword'; 
***************
*** 49,60 ****
  
  4. Edit koha.conf
! Set the database name to what you have called your database, hostname willprobably stay as localhost (unless you are installing the database on a different machine to the webserver) User and password should be changed to reflect the username and password you have chosen above.
! 
! You can include a line called "includes= " with path to your includes folder instead of entering the path in Output.pm - see example in KohaHints.
  
  
  5. Copy koha.conf to /etc/
! The permissions on this config file should also be strict, since they contain the database password. At a minimum, the apache user needs to be able to read it, as well as any other user that runs circ.
! I would suggest ownership of www-data.libadmins with no access to others.libadmins contain all users that use koha (If you set the owner as www-data u will need to make sure apache is running
  as www-data)
  
--- 53,74 ----
  
  4. Edit koha.conf
! Set the database name to what you have called your database, hostname
! willprobably stay as localhost (unless you are installing the database
! on a different machine to the webserver) User and password should be
! changed to reflect the username and password you have chosen above. 
! 
! You can include a line called "includes= " with path to your includes
! folder instead of entering the path in Output.pm - see example in
! Hints. 
  
  
  5. Copy koha.conf to /etc/
! The permissions on this config file should also be strict, since they
! contain the database password. At a minimum, the apache user needs to
! be able to read it, as well as any other user that runs circ.
!  
! I would suggest ownership of www-data.libadmins with no access to
! others.libadmins contain all users that use koha (If you set the owner
! as www-data u will need to make sure apache is running 
  as www-data)
  
***************
*** 65,86 ****
  for example: $path="/usr/local/www/koha/htdocs/includes";
  
! You do not need to do that if you have already entered the includes path in koha.conf (see example above) 
  
  Next copy the C4 directory (in modules/) to somewhere in your perl path
  eg /usr/local/lib/site_perl/i386-linux/
  
! If you do not have sufficient access to copy the files to the default perl folder (maybe you are using your ISPs hosting server) then you can copy the modules to any other location and add a line to apache.conf like:
  
  SetEnv PERL5LIB "/usr/local/www/koha/modules"
  
! Copy the C4 directory into the modules folder (see detailed example in KohaHints)
  
  
  7. Set up your Online Public Access Catalogue (OPAC)
  
! Set up a webspace for the OPAC: For example: You might make /usr/local/www/opac ... and set a virtual host in apache to use that dir 
! In your opac dir make a dir called htdocs, and copy everything in opac-html/ to it. 
  Again in ur opac dir make a dir called cgi-bin and copy all the files in
! opac-cgi/ that have a .pl extension to it, eg copy opac-cgi/*.pl /usr/local/www/opac/cgi-bin/koha/ 
  Your virtual host should be set up to use these dirs, some thing like this: 
  
--- 79,109 ----
  for example: $path="/usr/local/www/koha/htdocs/includes";
  
! You do not need to do that if you have already entered the includes
! path in koha.conf (see example above)  
  
  Next copy the C4 directory (in modules/) to somewhere in your perl path
  eg /usr/local/lib/site_perl/i386-linux/
  
! If you do not have sufficient access to copy the files to the default
! perl folder (maybe you are using your ISPs hosting server) then you
! can copy the modules to any other location and add a line to
! apache.conf like: 
  
  SetEnv PERL5LIB "/usr/local/www/koha/modules"
  
! Copy the C4 directory into the modules folder (see detailed example in
! Hints) 
  
  
  7. Set up your Online Public Access Catalogue (OPAC)
  
! Set up a webspace for the OPAC: For example: You might make
! /usr/local/www/opac ... and set a virtual host in apache to use that
! dir  
! In your opac dir make a dir called htdocs, and copy everything in
! opac-html/ to it.  
  Again in ur opac dir make a dir called cgi-bin and copy all the files in
! opac-cgi/ that have a .pl extension to it, eg copy opac-cgi/*.pl
! /usr/local/www/opac/cgi-bin/koha/  
  Your virtual host should be set up to use these dirs, some thing like this: 
  
***************
*** 95,105 ****
  
  
! When finished, restart apache and point your browser at opac.your.site and it should be all go (of course - if you dont have any data in the database there wont be much to see!) 
  
! Find supplementary information and config examples in KohaHints
  
  8. Set up the intranet/librarian interface
  
! Create new directories and additional httpd.conf changes to Set up another webspace. Lets call it koha. 
  For example:
  
--- 118,131 ----
  
  
! When finished, restart apache and point your browser at opac.your.site
! and it should be all go (of course - if you dont have any data in the
! database there won't be much to see!)  
  
! Find supplementary information and config examples in Hints
  
  8. Set up the intranet/librarian interface
  
! Create new directories and additional httpd.conf changes to Set up
! another webspace. Lets call it koha.  
  For example:
  
***************
*** 112,132 ****
  
  9. Configure SECURITY for the Librarians/Intranet Interface
! If you are using AuthenDBI to do your authentication, you will need to add some users to the users table in the koha database. And edit your apache conf file to use AuthenDBI on the intranet site.
! 
! Otherwise, set up htaccess files in both koha/htdocs/ and koha/cgi-bin You can use general .htaccess based security. It is important though to password protect the librarians interface because from it you can delete and add items, remove borrowers fines and generally case havoc.
  
  
  10. Set up Issues, Returns and Telnet interface.
! Since we have already copied the files in scripts/C4 into somewhere in our perl source tree
  
! We just need to now copy the scripts from scripts/telnet/ into somewhere in the executable path, eg /usr/local/bin
  
  Then its done: type circ and your away, ready to issue and return.
  
! In release 1.1.0 on there is now a webbased circulation module, So issues and returns can be done from there, or from circ.
  
  
- You will find some Koha config examples in KohaHints 
  
  
- Check out KohaMiniFAQ for general, supplementary information. 
--- 138,168 ----
  
  9. Configure SECURITY for the Librarians/Intranet Interface
! If you are using AuthenDBI to do your authentication, you will need to
! add some users to the users table in the koha database. And edit your
! apache conf file to use AuthenDBI on the intranet site. 
! 
! Otherwise, set up htaccess files in both koha/htdocs/ and koha/cgi-bin
! You can use general .htaccess based security. It is important though
! to password protect the librarians interface because from it you can
! delete and add items, remove borrowers fines and generally case
! havoc. 
  
  
  10. Set up Issues, Returns and Telnet interface.
! Since we have already copied the files in scripts/C4 into somewhere in
! our perl source tree 
  
! We just need to now copy the scripts from scripts/telnet/ into
! somewhere in the executable path, eg /usr/local/bin 
  
  Then its done: type circ and your away, ready to issue and return.
  
! In release 1.1.0 on there is now a web-based circulation module, So
! issues and returns can be done from there, or from circ. 
! 
! 
! You will find some Koha config examples in Hints 
  
  
  
  

Index: Hints
===================================================================
RCS file: /cvsroot/koha/koha/Hints,v
retrieving revision 1.1.2.1
retrieving revision 1.1.2.2
diff -C2 -r1.1.2.1 -r1.1.2.2
*** Hints	3 May 2002 21:34:49 -0000	1.1.2.1
--- Hints	6 Jun 2002 14:43:41 -0000	1.1.2.2
***************
*** 6,10 ****
  pass=xxxxxx
  includes=/usr/local/www/koha/htdocs/includes
! Please note the final line (includes=path) - The path entry can be used as an alternative to manually editing the path in Output.pm file (see INSTALL manual).
  
  
--- 6,13 ----
  pass=xxxxxx
  includes=/usr/local/www/koha/htdocs/includes
! 
! Please note the final line (includes=path) - The path entry can be
! used as an alternative to manually editing the path in Output.pm file
! (see INSTALL manual). 
  
  
***************
*** 15,19 ****
  
  http://httpd.apache.org/docs/mod/mod_include.html 
! If your page headers and footers do not show, then you may need to re-configure your web server.
  
  Here is an example of entries suitable for Apache httpd.conf:
--- 18,24 ----
  
  http://httpd.apache.org/docs/mod/mod_include.html 
! 
! If your page headers and footers do not show, then you may need to
! re-configure your web server. 
  
  Here is an example of entries suitable for Apache httpd.conf:
***************
*** 88,90 ****
  
  
! Read your web server docs for more information about how Server Side Includes work.
--- 93,99 ----
  
  
! Read your web server docs for more information about how Server Side
! Includes work. 
! 
! 
! 





More information about the Koha-cvs mailing list