Configuration: Difference between revisions
No edit summary |
No edit summary |
||
| Line 26: | Line 26: | ||
and then reload metadata (or restart IIS) | and then reload metadata (or restart IIS) | ||
---- | |||
HTTP 403.14 Forbidden Error | |||
This can happen in CRM with development of custom pages especially when changing from admin mode to Normal user mode | |||
A work around to top this happening is to create a default page in the "CRM/custompages" folder | |||
This page redirects the user to some location (our example goes to action 183. | |||
var newUrl=CRM.Url(183); | |||
Response.Redirect(newUrl); | |||
Within IIS you have to add your file name as a default document at the custompages folder level | |||
[[File:403index.png]] | |||
---- | |||
Revision as of 10:26, 30 April 2014
Error - IP Address Mismatch
Log on to the server and open regedit and the CRM settings
Change the key value "IPAddressChecking" to be N
IIS needs to be reset for the change to take effect
If you install SQL Express the system will setup a default sa password as
SageCRMv71
Ref: https://community.sagecrm.com/user_community/f/84/p/6017/22204.aspx#22204
To expose emailtemplates to CRM run the following update in SQL
update Custom_Tables set Bord_Hidden=null where Bord_Name='EmailTemplates'
and then reload metadata (or restart IIS)
HTTP 403.14 Forbidden Error
This can happen in CRM with development of custom pages especially when changing from admin mode to Normal user mode
A work around to top this happening is to create a default page in the "CRM/custompages" folder
This page redirects the user to some location (our example goes to action 183.
var newUrl=CRM.Url(183); Response.Redirect(newUrl);
Within IIS you have to add your file name as a default document at the custompages folder level
