Troubleshoot

From Sage CRM Knowledge Base
Revision as of 18:27, 5 January 2012 by Crmtogetherkb (talk | contribs)

This seciton is for CRM Together staff to help troubleshoot product installs

1. Client toolbar only half lights up and Outlook when starting always asks to reconnect to CRM.

Check the Server error log. If you see 500 errors there is a chance that the server request (which is made within the iis process) is not allowed and so is returning 500 errors.

To resolve this open the web.config file and set the CRMCodedPath setting to be something like "http://servername/CRM/". (Note: you may need to add this setting)

For example

   <add key="CRMCodedPath" value="http://localhost/crm/"/>

This can happen to any application written in Titan so this applies to all products.

2. NT Authenication Error

Depending on the IIS setup you may need to add in a windows users details to the web.config file. This usually occurs when IIS requires authentication.

Set the following values to be a relevenat user. It is best to ensure that the users password does not expire.

   <add key="CRMNetworkUser" value=""/>
   <add key="CRMNetworkUserPassword" value=""/>
   <add key="CRMNetworkDomain" value=""/>

(Note: you may need to add these settings)