diff options
Diffstat (limited to 'TWiki')
-rw-r--r-- | TWiki/TWikiInstallationGuide.mdwn | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/TWiki/TWikiInstallationGuide.mdwn b/TWiki/TWikiInstallationGuide.mdwn index 7fe6b620..11e7b329 100644 --- a/TWiki/TWikiInstallationGuide.mdwn +++ b/TWiki/TWikiInstallationGuide.mdwn @@ -20,12 +20,13 @@ Request and download the TWiki 01-Sep-2001 distribution in Unix ZIP format from ### <a name="Step_1_Create_amp_Configure_the_"> Step 1: Create & Configure the Directories </a> -**_NOTE:_** _If you don't have access to your Web server configuration files - for example, if you're installing on an ISP-hosted account - use the alternative Step 1 instead._ +* **_NOTE:_** _If you don't have access to your Web server configuration files - for example, if you're installing on an ISP-hosted account - use the alternative Step 1 instead._ +* **_NOTE:_** To install TWiki on SourceForge, for use on a software development project, read TWiki:Codev/SourceForgeHowTo. * Create directory `/home/httpd/twiki` and unzip the TWiki distribution into this directory. * The `twiki/bin` directory of TWiki must be set as a cgi-bin directory. Add `/home/httpd/twiki/bin` to file `/etc/httpd/httpd.conf` with only `ExecCGI` option. * The `twiki/pub` directory of TWiki must be set so that it is visible as a URL. Add `/home/httpd/twiki` to file `httpd.conf` with normal access options (copy from `/home/httpd/html` ). -* Now add `ScriptAlias` for `/twiki/bin` and `Alias` for `/twiki` to file `httpd.conf` . <br />**_Note:_** The `ScriptAlias` **must** come before the `Alias` in Apache, otherwise it will fail to correctly set up `/twiki/bin/` , due to the fact that it sees that as being just another subdirectory of the `/twiki/` alias. <br /> +* Now add `ScriptAlias` for `/twiki/bin` and `Alias` for `/twiki` to file `httpd.conf` . <br />**_NOTE:_** The `ScriptAlias` **_must_** come before the `Alias`, otherwise, Apache will fail to correctly set up `/twiki/bin/`, by treating it as just another subdirectory of the `/twiki/` alias. > **Example `httpd.conf` entries:** > @@ -64,13 +65,13 @@ To install TWiki on a system where you don't have server administrator privilege > <tr> > <td><code>twiki/bin</code></td> > <td> CGI bin </td> -> <td> cgi-bin enabled dir </td> +> <td> cgi-enabled dir </td> > <td><code>/home/smith/public_html/cgi-bin</code></td> > </tr> > <tr> > <td><code>twiki/lib</code></td> > <td> library files </td> -> <td> same level like <code>twiki/bin</code></td> +> <td> same level as <code>twiki/bin</code></td> > <td><code>/home/smith/public_html/lib</code></td> > </tr> > <tr> @@ -92,8 +93,6 @@ To install TWiki on a system where you don't have server administrator privilege > <td><code>/home/smith/twiki/templates</code></td> > </tr> > </table> -> -> (Read TWiki:Codev/SourceForgeHowTo in case you want to install TWiki on SourceForge, to use on a software development project.) <a name="StepTwo"></a> |