I'm installed uComments in 7.1 running on Azure I'm getting the following error in Umbraco when I click on the Comments Tab:
Error running Reader: SQL Statement: select * from comment where spam != 1 order by created desc
Exception: System.Data.SqlServerCe.SqlCeException (0x80004005): The specified table does not exist. [ comment ] at System.Data.SqlServerCe.SqlCeCommand.ProcessResults(Int32 hr) at System.Data.SqlServerCe.SqlCeCommand.CompileQueryPlan() at System.Data.SqlServerCe.SqlCeCommand.ExecuteCommand(CommandBehavior behavior, String method, ResultSetOptions options) at SqlCE4Umbraco.SqlCeApplicationBlock.ExecuteReader(String connectionString, CommandType commandType, String commandText, SqlCeParameter[] commandParameters)
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: SqlCE4Umbraco.SqlCeProviderException: Error running Reader: SQL Statement: select * from comment where spam != 1 order by created desc
Exception: System.Data.SqlServerCe.SqlCeException (0x80004005): The specified table does not exist. [ comment ] at System.Data.SqlServerCe.SqlCeCommand.ProcessResults(Int32 hr) at System.Data.SqlServerCe.SqlCeCommand.CompileQueryPlan() at System.Data.SqlServerCe.SqlCeCommand.ExecuteCommand(CommandBehavior behavior, String method, ResultSetOptions options) at SqlCE4Umbraco.SqlCeApplicationBlock.ExecuteReader(String connectionString, CommandType commandType, String commandText, SqlCeParameter[] commandParameters)
Might it not have created the table when I did the install or is it a more general problem with 7.1?
uComments in 7.1 on Azure
I'm installed uComments in 7.1 running on Azure I'm getting the following error in Umbraco when I click on the Comments Tab:
Might it not have created the table when I did the install or is it a more general problem with 7.1?
So I found the solution for this and thought I'd post it here.
Firstly, run this query against the database:
This will solve the error above, but you'll get another error saying:
To resolve this you'll need to edit UCommentModeration.ascx and add the line
above
is working on a reply...