Installing SugarCRM
MWahl | May 9, 2010 | 10:47 pmI installed SugarCRM on Windows Server 2003 IIS 6 for evaluation. http://www.sugarcrm.com/crm/download/sugar-suite.html
http://www.sugarcrm.com/wiki/index.php?title=Main_Page
The install was pretty easy, it was a typical web site install envolving PHP and MySQL. Configure CGI was a struggle though. To install and configure CGI follow these steps.
1.Download the CGI extension
http://www.iis.net/download/fastcgi
2. Add an extension mapping
php
C:\WINDOWS\system32\inetsrv\fcgiext.dll
limit it verbs to GET,HEAD,POST
3. Next open a command prompt and issue this command..
C:\WINDOWS\system32\inetsrv>cscript fcgiconfig.js -add -section:"PHP" -extension:php -path:"C:\PHP\php-cgi.exe"
Microsoft (R) Windows Script Host Version 5.6
Copyright (C) Microsoft Corporation 1996-2001. All rights reserved.
INI successfully written.
C:\WINDOWS\system32\inetsrv>
4. If you open C:\WINDOWS\system32\inetsrv\fcgiext.ini , you will see an entry at the bottom for
[Types]
php=PHP
[PHP]
ExePath=C:\PHP\php-cgi.exe
RequestTimeout=120
ActivityTimeout=120

lopsa




