[Koha] Re: Koha on WinXP

Olugbenga Adara gbengaadara at yahoo.com
Fri Dec 10 04:28:28 NZDT 2004


Hello Waylon, 

thanks. i will try this later today. But just as an
aside, is there no need to setup a new database in
mysql by importing the schema of the new version
2.2.0rc4?


--- Waylon Robertson <genji18 at yahoo.co.nz> wrote:

> My koha installation is running under windows XP
> quite happily.
> 
> the files I attach are my koha.conf and my
> apache.conf files.
> The actual koha scripts are just unzipped from the
> tarball, and put into 
> the usr/koha directory, mine has an old name because
> ive been running it 
> this way ever since 2.0.0 came out.
> > database=koha
> hostname=localhost
> user=koha
> pass=koha
> intranetdir=c:\usr\koha200pre2\opac
> opacdir=c:\usr\koha200pre2\opac
> kohaversion=2.0.0pre2
> opachtdocs=c:\usr\koha200pre2\opac-html\opac-tmpl
>
intrahtdocs=c:\usr\koha200pre2\intranet-html\intranet-tmpl
>
includes=c:\usr\koha200pre2\intranet-html\intranet-tmpl\default\en\includes
> 
> > # FOR KOHA CONFIG SEE LINES 198, 212, 228, 253,
474,
> 480, 947-> (USE ctrl-g).
> # Based upon the NCSA server configuration files
> originally by Rob McCool.
> #
> # This is the main Apache server configuration file.
>  It contains the
> # configuration directives that give the server its
> instructions.
> # See <URL:http://httpd.apache.org/docs-2.0/> for
> detailed information about
> # the directives.
> #
> # Do NOT simply read the instructions in here
> without understanding
> # what they do.  They're here only as hints or
> reminders.  If you are unsure
> # consult the online docs. You have been warned.  
> #
> # The configuration directives are grouped into
> three basic sections:
> #  1. Directives that control the operation of the
> Apache server process as a
> #     whole (the 'global environment').
> #  2. Directives that define the parameters of the
> 'main' or 'default' server,
> #     which responds to requests that aren't handled
> by a virtual host.
> #     These directives also provide default values
> for the settings
> #     of all virtual hosts.
> #  3. Settings for virtual hosts, which allow Web
> requests to be sent to
> #     different IP addresses or hostnames and have
> them handled by the
> #     same Apache server process.
> #
> # Configuration and logfile names: If the filenames
> you specify for many
> # of the server's control files begin with "/" (or
> "drive:/" for Win32), the
> # server will use that explicit path.  If the
> filenames do *not* begin
> # with "/", the value of ServerRoot is prepended --
> so "logs/foo.log"
> # with ServerRoot set to "/usr/local/apache" will be
> interpreted by the
> # server as "/usr/local/apache/logs/foo.log".
> #
> # NOTE: Where filenames are specified, you must use
> forward slashes
> # instead of backslashes (e.g., "c:/apache" instead
> of "c:\apache").
> # If a drive letter is omitted, the drive on which
> Apache.exe is located
> # will be used by default.  It is recommended that
> you always supply
> # an explicit drive letter in absolute paths,
> however, to avoid
> # confusion.
> #
> 
> ### Section 1: Global Environment
> #
> # The directives in this section affect the overall
> operation of Apache,
> # such as the number of concurrent requests it can
> handle or where it
> # can find its configuration files.
> #
> 
> #
> # ServerRoot: The top of the directory tree under
> which the server's
> # configuration, error, and log files are kept.
> #
> # NOTE!  If you intend to place this on an NFS (or
> otherwise network)
> # mounted filesystem then please read the LockFile
> documentation
> # (available at
>
<URL:http://httpd.apache.org/docs-2.0/mod/core.html#lockfile>);
> # you will save yourself a lot of trouble.
> #
> # Do NOT add a slash at the end of the directory
> path.
> #
> ServerRoot "C:/Program Files/Apache Group/Apache2"
> 
> #
> # ScoreBoardFile: File used to store internal server
> process information.
> # If unspecified (the default), the scoreboard will
> be stored in an
> # anonymous shared memory segment, and will be
> unavailable to third-party
> # applications.
> # If specified, ensure that no two invocations of
> Apache share the same
> # scoreboard file. The scoreboard file MUST BE
> STORED ON A LOCAL DISK.
> #
> #ScoreBoardFile logs/apache_runtime_status
> 
> #
> # PidFile: The file in which the server should
> record its process
> # identification number when it starts.
> #
> PidFile logs/httpd.pid
> 
> #
> # Timeout: The number of seconds before receives and
> sends time out.
> #
> Timeout 300
> 
> #
> # KeepAlive: Whether or not to allow persistent
> connections (more than
> # one request per connection). Set to "Off" to
> deactivate.
> #
> KeepAlive On
> 
> #
> # MaxKeepAliveRequests: The maximum number of
> requests to allow
> # during a persistent connection. Set to 0 to allow
> an unlimited amount.
> # We recommend you leave this number high, for
> maximum performance.
> #
> MaxKeepAliveRequests 100
> 
> #
> # KeepAliveTimeout: Number of seconds to wait for
> the next request from the
> # same client on the same connection.
> #
> KeepAliveTimeout 15
> 
> ##
> ## Server-Pool Size Regulation (MPM specific)
> ## 
> 
> # WinNT MPM
> # ThreadsPerChild: constant number of worker threads
> in the server process
> # MaxRequestsPerChild: maximum  number of requests a
> server process serves
> <IfModule mpm_winnt.c>
> ThreadsPerChild 250
> MaxRequestsPerChild  0
> </IfModule>
> 
> #
> # Listen: Allows you to bind Apache to specific IP
> addresses and/or
> # ports, in addition to the default. See also the
> <VirtualHost>
> # directive.
> #
> # Change this to Listen on specific IP addresses as
> shown below to 
> # prevent Apache from glomming onto all bound IP
> addresses (0.0.0.0)
> #
> #Listen 12.34.56.78:80
> Listen 80
> 
> #
> # Dynamic Shared Object (DSO) Support
> #
> # To be able to use the functionality of a module
> which was built as a DSO you
> # have to place corresponding `LoadModule' lines at
> this location so the
> # directives contained in it are actually available
> _before_ they are used.
> # Statically compiled modules (those listed by
> `httpd -l') do not need
> # to be loaded here.
> #
> # Example:
> # LoadModule foo_module modules/mod_foo.so
> #
> LoadModule access_module modules/mod_access.so
> LoadModule actions_module modules/mod_actions.so
> LoadModule alias_module modules/mod_alias.so
> LoadModule asis_module modules/mod_asis.so
> LoadModule auth_module modules/mod_auth.so
> #LoadModule auth_anon_module
> modules/mod_auth_anon.so
> #LoadModule auth_dbm_module modules/mod_auth_dbm.so
> #LoadModule auth_digest_module
> modules/mod_auth_digest.so
> LoadModule autoindex_module modules/mod_autoindex.so
> #LoadModule cern_meta_module
> modules/mod_cern_meta.so
> LoadModule cgi_module modules/mod_cgi.so
> 
=== message truncated ===> 
> ---
> Outgoing mail is certified Virus Free.
> Checked by AVG anti-virus system
> (http://www.grisoft.com).
> Version: 6.0.802 / Virus Database: 545 - Release
> Date: 26/11/2004
> 


=====
Olugbenga Adara MCP
Consultant, 3om Services,
75, Lebanon Street, Dugbe,
Ibadan, Nigeria.
Tel: 234-2-2412090
Mobile: 234-803-3220288


	
		
__________________________________ 
Do you Yahoo!? 
Yahoo! Mail - You care about security. So do we. 
http://promotions.yahoo.com/new_mail



More information about the Koha mailing list