|
|
(2 intermediate revisions by one other user not shown) |
Line 1: |
Line 1: |
| <div>These Instructions assume that you are using Windows 7 Ultimate x64. Procedures for Server 2008 R2 are similar but may vary slightly.</div><div></div><div></div>
| | See http://bugzilla.readthedocs.org/en/latest/installing/windows.html . |
| = Start Internet Information Services (IIS) Manager =
| |
| | |
| Start --> Administrators Tools --> Internet Information Services (IIS) Manger
| |
| | |
| | |
| | |
| At "''Search Programs and Files''" enter '''inetmgr''' and press '''enter'''
| |
| | |
| = Create a New Application =
| |
| Expand your Server until the Default Web Site shows its children.
| |
| | |
| "Right-Click" Default Web Site and select "Add Application" from the Menu.
| |
| | |
| Unde Alias, enter the alias for the website. This is what users will place into their browsers URL bar appended to the domain
| |
| | |
| Under Physical Path, enter the path of your application, the defualt intalltion location is:
| |
| <pre>C:\Bugzilla
| |
| </pre>
| |
| alternatiely you can browse to the directory location.
| |
| | |
| | |
| | |
| When finished, Click '''OK.'''
| |
| | |
| | |
| = Configure the Default Document =
| |
| Click on the Application that you just created.
| |
| | |
| Under IIS "double-click" on '''Default Document'''
| |
| Click "Add" underneath the Actions Menu
| |
| | |
| Under Name, enter the file name of Bugzilla's default Document
| |
| <pre>index.cgi</pre>All other default documents can be removed for this application. If you are running other applications underneath the Default Website,
| |
| '''NOTE:'''
| |
| | |
| '''DO NOT''' delete the defualt document from '''Default Website'''
| |
| | |
| | |
| = Add Handler Mappings =
| |
| | |
| == Default Website ==
| |
| | |
| Ensure that you are at the Default Website
| |
| | |
| Under IIS, "Double-Click" Handler Mappings
| |
| | |
| Under Actions, Click Add Script Map
| |
| | |
| === Create a Script for Perl.exe ===
| |
| | |
| Request Path
| |
| <pre>*.cgi</pre>
| |
| Executable
| |
| <pre>C:\Perl64\bin\perl.exe "%s% %s%</pre>
| |
| Name
| |
| <pre>CGI Script Map</pre>
| |
| At the prompt select '''No'''
| |
| | |
| <br>
| |
| | |
| === Create a Script for CGI (.pl) ===
| |
| | |
| Request Path
| |
| <pre>.pl</pre>
| |
| Executable
| |
| <pre>C:\Perl6\bin\perl.exe "%s%" %s </pre>
| |
| Name
| |
| <pre>CGI Script Map</pre>
| |
| At the prompt select '''No'''<br>
| |
| | |
| == Bugzilla Applicatin ==
| |
| | |
| Ensure that you are at the Bugzilla Application
| |
| | |
| Under IIS "Double-Click" Handler Mappings
| |
| | |
| Under Actions, Click Add Script Map
| |
| | |
| Request Path
| |
| <pre>*.cgi
| |
| | |
| </pre>
| |
| Executable
| |
| <pre>C:\Perl64\bin\perl.exe -xc:\bugzilla -wT "%s" %s
| |
| </pre>
| |
| Name
| |
| <pre>Bugzilla
| |
| </pre>
| |
| At the prompt select '''No'''
| |