Changes between Version 7 and Version 8 of ConfigureGuide22Windows


Ignore:
Timestamp:
Aug 4, 2010, 9:30:59 AM (14 years ago)
Author:
hluo
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ConfigureGuide22Windows

    v7 v8  
    881. Download and Install Apache2.2.16 for Windows from [http://www.apachelounge.com/download/ Here]. Unzip the downloaded file to anywhere, in this document, we unzip it to c:\Apache2
    99
    10 2. edit httpd.conf and test the installation
     102. add the following lines to httpd.conf
    1111{{{
    12 cd c:\Apache2\conf
    13 notepad httpd.conf
    14 cd c:\Apache2\bin
    15 httpd.exe -k install
    16 httpd.exe -k start
     12LoadModule mod_mgmapagent modules/mod_mgmapagent.so
     13include conf/mapguide.conf
    1714}}}
    18 open a browser to http://localhost:8080, if you see "It works", then apache installation and configuration is successful.
    1915
    20 3. Create another config file, name it ''mapguide.conf'' with the following contents(edit it accordingly for your system)
     163. Create another config file, name it ''mapguide.conf'' with the following contents(change the path accordingly for your system)
    2117{{{
    22 notepad mapguide.conf
     18Alias /mapguide "c:/mapguideopensource-2.2-beta1/Web/www"
     19<Directory "c:/mapguideopensource-2.2-beta1/Web/www">
     20  AllowOverride All
     21  Options All
     22  Order allow,deny
     23  Allow from all
     24  AddHandler php5-script .php
     25  AddHandler mgmapagent_handler fcgi
     26  RewriteEngine on
     27  RewriteRule .* - [E=REMOTE_USER:%{HTTP:Authorization},L]
     28</Directory>
    2329}}}
    2430'''''Note:''''' Attached are sample conf files.