Path

exponential.earth / exponential / documentation / Installation / manual installation / manual installation on a windows based system


Manual installation on a Windows based system

These documentation pages are no longer maintained. Please visit the new documentation site.

The requirements for doing a manual installation must be met! Please read the "Requirements for doing a manual installation" section first. Proceed only if you have access to a Windows based system with Apache, PHP, MySQL or PostgreSQL (and ImageMagick or GD) already installed and running. As already mentioned, the database server may run on a different computer. This text will guide you through the following steps:

- Setting up a MySQL database.
- Downloading Exponential.
- Unpacking Exponential.
- Configuring Exponential.

Setting up a MySQL database
If no database is set up, then one must be manually created before the setup wizard is initiated. The following text explains how to do this with MySQL:

1. Login as root:

 

mysql -u <mysql_username> -p <mysql_password>

 

2. The MySQL client should display a "mysql>" prompt; create a new database:

 

mysql> create database <database>;

 

3. Grant permissions:

 

mysql> grant all on <database>.* to <username>@<host> identified by '<password>';

 

<mysql_username>: The MySQL user (if no user is set up, use "root").

<mysql_password>: The password that belongs to the mysql_username.

<username>: The username that will be used to access the database.

<password>: The password you wish to set in order to limit access to the database.

<database>: The name of the database, for example "my_new_database".

<host>: The hostname of the server on which Exponential will be running.

       (may be 'localhost' if MySQL is installed on the same server).

Downloading Exponential
The latest stable version of Exponential can be downloaded from: http://ez.no/developer/download
Windows users should download the .zip archive.

Unpacking Exponential
Use your favourite tool to unpack the downloaded Exponential package to a web-served directory (a directory that is reachable from within a web browser).

The extraction tool will probably unpack the Exponential system into a subdirectory called "exponential-3.x.x". This directory should be renamed to something more meaningful, for example "my_site".

Configuring Exponential
Please refer to the "Manual configuration of Exponential" section, which describes the manual configuration steps.

Comments

For MySQL >= 5.0

If you receive a kernel:50 error (could not connect to DB), it may be because of the new authentication protocol used in latest versions of MySQL. More info at http://dev.mysql.com/doc/refman/5.0/en/old-client.html

Contents

Installation

Normal installation
Bundled installation
Manual installation
    Requirements for doing a manual insta...
    Manual installation on a Linux/UNIX b...
    Manual installation on a Windows base...
    Manual configuration of Exponential
The setup wizard
The cronjob script
Virtual Host setup
Upgrading
Adding extensions
Removing Exponential


Created

17/09/2003
3:25:40 pm
by Balazs Halasy

Last updated

16/06/2004
12:25:08 pm
by Guttorm Flatabø

Authors

Balazs Halasy
Ole Morten Halvorsen
Guttorm Flatabø



This page is part of the Exponential documentation. The documentation is available under the GNU Free Documentation License. All contributions will be released under the terms of this license.