Changes between Version 7 and Version 8 of ConfigureGuide22Windows
- Timestamp:
- 08/04/10 09:30:59 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ConfigureGuide22Windows
v7 v8 8 8 1. 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 9 9 10 2. edit httpd.conf and test the installation10 2. add the following lines to httpd.conf 11 11 {{{ 12 cd c:\Apache2\conf 13 notepad httpd.conf 14 cd c:\Apache2\bin 15 httpd.exe -k install 16 httpd.exe -k start 12 LoadModule mod_mgmapagent modules/mod_mgmapagent.so 13 include conf/mapguide.conf 17 14 }}} 18 open a browser to http://localhost:8080, if you see "It works", then apache installation and configuration is successful.19 15 20 3. Create another config file, name it ''mapguide.conf'' with the following contents( edit itaccordingly for your system)16 3. Create another config file, name it ''mapguide.conf'' with the following contents(change the path accordingly for your system) 21 17 {{{ 22 notepad mapguide.conf 18 Alias /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> 23 29 }}} 24 30 '''''Note:''''' Attached are sample conf files.