Astrow Web Manual Installation on Windows Sever 2003Step 1: Extract AstrowWeb.zip content to c:\inetpub\wwwroot\Astrow folder (which needs to be created first).
Step 2: Go to Start - Control panel - Administrative Tool - Internet Information Services Manager - Web Sites (for a quick open you can type inetmgr in a command prompt).
Step 3: Right click on Properties for Astrow.
Step 4: Click on Create button in Virtual Directory tab and then select an application pool from Application Protection combo. Then click Apply.
Step 5: Click the button Edit in Directory Security tab in Anonymous access and authentication control section.
Step 6: Select Enable anonymous access and Integrated Windows authentication checkbox.
Step 7: In ASP.NET tab make sure ASP.NET version is 4.0 or upper.
Step 8: Edit c:\Inetpub\wwwroot\astrow\Web.config and set the database connection or any other parameter.
<connectionStrings>
<add name="ConnectionStringBusiness" connectionString="Database=AstrowDB;Server=(local);user id=sa;password=sa;"/>
<add name="ConnectionStringSecurity" connectionString="Database=AstrowDB;Server=(local);user id=sa;password=sa;"/>
</connectionStrings>
Or for a trusted SQL connection:
<connectionStrings>
<add name="ConnectionStringBusiness" connectionString="Database=AstrowDB;Server=(local); Trusted_Connection=True;"/>
<add name="ConnectionStringSecurity" connectionString="Database=AstrowDB;Server=(local); Trusted_Connection=True;"/>
</connectionStrings>
|