History
Recent Topics
| In order for Polar Help Desk to work, SQL Server must be configured to allow user that ASP.NET uses (NT AUTHORITY\NETWORK SERVICE) has full access to all SQL databases. Here is how you do it manually:
Additional steps which may be required, depending on how SQL is configured:
Create Database Manually: Create a database in SQL manager and run these two scripts that can be found in the Setup folder, where you have installed Polar Help Desk.
PolarServiceDesk_Database_CreateObjects.sql
PolarServiceDesk_Database_Initialize.sql
Now that the database has been created:
Configure Help Desk to use remote database Replace helpdeskConfiguration in your web.config file with the XML below. This file can be found in the root of the Polar Help Desk virtual folder.
<helpdeskConfiguration>
<scheduler enable="true" interval="4"/>
<database autodetect="false"/>
<instances>
<instance url="http://company/helpdesk" connectionString="data source=(local)\SQLEXPRESS;Integrated Security=SSPI;database={0};" database="DatabaseName">
<shadows>
<!--<shadow path="shadow1/" database="aas"/>-->
</shadows>
</instance>
</instances>
</helpdeskConfiguration>
The only elements of interest are
url="http://company/helpdesk"
connectionString="data source=(local)\SQLEXPRESS;Integrated Security=SSPI;database={0};"
database="DatabaseName"
You will have to update the URL, the database name and the connection string. Connection string needs to target your remote server. Note that {0} must remain intact.
External Resoruces
Recommended articlesYou may be also interested in... | ||||||||||||||||||||||||||||
.......