Normally SharePoint shows the custom errors to the users. which is not very relevant in the development environment. thus you can enable the full errors by
- Go the SharePoint web application using IIS
- Open the Web.config
- Find CallStack word.
<SafeMode MaxControls=ā200ā CallStack=āfalseā DirectFileDependencies=ā10ā
TotalFileDependencies=ā50ā AllowPageLevelTrace=āfalseā>
Change both the CallStack and AllowPageLevelTrace attributes from false to true.
- then find customErrors and make it to false.
<customErrors mode=āOnā /> ā> Make this to āRemoteOnlyā.
Comments