wiki:ConfigureGuide22Windows

Version 11 (modified by hluo, 14 years ago) ( diff )

--

Configure Web Servers to run MapGuide Web Applications on Windows

this document is written with windows 7 as the testing platform, the process may be slightly different under windows xp. Web applications are refered in mapguide project as web extensions, but they are really the same things.

Under windows, you have the options to deploy mapguide web application to either Apache, or Tomcat, or IIS

Apache2

Note If you are using Apache as the web server, it is assumed that you should know how to configure apache with an web application, otherwise, please read Apache Documentation first.

  1. Download and Install Apache2.2.16 for Windows from Here. Unzip the downloaded file to anywhere, in this document, we unzip it to c:\Apache2

Apache is also available under svn/mgdev/Oem/LinuxApt, which can be copy and pasted to anywhere, but do this only if you know what you are doing. apache.org does not submit any build for 64-bit machines, try this site to obtain a binary 64-bit build.

  1. add the following lines to httpd.conf
    LoadModule mod_mgmapagent modules/mod_mgmapagent.so
    
    Alias /mapguide "c:/mapguideopensource-2.2-beta1/Web/www"
    <Directory "c:/mapguideopensource-2.2-beta1/Web/www">
      AllowOverride All
      Options All
      Order allow,deny
      Allow from all
      AddHandler php5-script .php
      AddHandler mgmapagent_handler fcgi
      RewriteEngine on
      RewriteRule .* - [E=REMOTE_USER:%{HTTP:Authorization},L]
    </Directory>
    

Note: mod_mgmapagent is the module name for mapguide agent, which is hardcoded in source code, so it can't be anything else

  1. start apache http server
    cd <apache bin folder>
    httpd.exe --help
    httpd.exe -k install 
    httpd.exe -k start
    
  1. Troubleshooting
  • visit this site for common apache errors
  • HTTP 403: you don't permission to /mapguide/mapadmin/login.php or anything site under /mapguide/<blabla> : this error means your access setting in apache config file is wrong.
  • browser opens to the source code of php file instead of a web page: this error means Apache is not configured correctly to use PHP.

Tomcat

IIS

Attachments (1)

Download all attachments as: .zip

Note: See TracWiki for help on using the wiki.