We are moving to a new production web server and sql server. I have my application up and running, except that Elmah does not log any errors and the elmah.axd file says that there are no entries in the database. I am guessing that somehow, our userid is messed up. The elmah section of my web.config is:
<elmah>
<security allowRemoteAccess="1"/>
<errorLog type="Elmah.SqlErrorLog, Elmah" connectionStringName="DBConnectionString"/>
</elmah>
My DBConnectionString is:
<connectionStrings>
<clear/>
<add name="DBConnectionString" connectionString="Data Source=....;User Id=....;Password=....;Initial Catalog=cms_stagedb3;" providerName="System.Data.SqlClient"/>
</connectionStrings>
The user id has the Execute permission set on the elmah sprocs. there are entries in the web.config module section and the system.WebServer. Any suggestions are appreciated.
TIA.