Wiliam,
Thanks for the reply. I tired your suggestion to re-install Appolo modules. Unfortunally it didn't get well. I tried many times uninstall and install. I'm getting these 2 errors:
1. Warning SQL Execution resulted in following Exceptions: System.Data.SqlClient.SqlException: Cannot insert duplicate key row in object 'dbo.dnn_Packages' with unique index 'IX_dnn_Packages'. Cannot insert the value NULL into column 'PackageID', table 'xxx_Dev.dbo.dnn_SkinControls'; column does not allow nulls. INSERT fails. The statement has been terminated. The statement has been terminated. at System.Data.SqlClient.SqlConnection. (SqlException exception, Boolean breakConnection) at System.Data.SqlClient.SqlInternalConnection. (SqlException exception, Boolean breakConnection) at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj) at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj) at System.Data.SqlClient.SqlCommand.RunExecuteNonQueryTds(String methodName, Boolean async) at System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(DbAsyncResult result, String methodName, Boolean sendToPipe) at System.Data.SqlClient.SqlCommand.ExecuteNonQuery() at DotNetNuke.Data.SqlDataProvider.ExecuteADOScript(String SQL) at DotNetNuke.Data.SqlDataProvider.ExecuteScript(String Script, Boolean UseTransactions) /************************************************************/ /***** SQLDataProvider *****/ /***** ModuleLocalization *****/ /***** *****/ /***** Note: To manually execute this script you must *****/ /***** perform a search and replace operation *****/ /***** for dbo. and dnn_ *****/ /***** *****/ /************************************************************/ /* copyright (c) 2008 by Erik van Ballegoij ( erik@apollo-software.nl ) ( http://www.apollo-software.nl )*/ IF ( SELECT TOP 1 [Major] FROM dbo.[dnn_Version] ORDER BY VersionId DESC ) <= 4 BEGIN IF ( SELECT COUNT(*) FROM dbo.[dnn_ModuleControls] WHERE ControlKey = 'MLTITLE' ) = 0 BEGIN INSERT INTO dbo.[dnn_ModuleControls] ( ControlKey, ControlSrc, ControlType, ControlTitle ) VALUES ( 'MLTITLE', 'DesktopModules/ModuleLocalization/MLTitle.ascx', -2, 'CONTAINER' ) END END ELSE BEGIN DECLARE @PackageId INT INSERT INTO dbo.[dnn_Packages] ( [Name], [FriendlyName], [Description], [PackageType], [Version], [License] ) VALUES ( N'Apollo.MLTITLE', N'MLTITLE SkinObject', N'This SkinObject is part of the Apollo ModuleLocalization Module', N'SkinObject', N'1.0.0', N'See for complete license text: http://www.apollo-software.nl/Over/SoftwareLicense/tabid/77/language/en-US/Default.aspx' ) SELECT @PackageId = SCOPE_IDENTITY() INSERT INTO dbo.[dnn_SkinControls] ( [PackageID], [ControlKey], [ControlSrc], [IconFile], [HelpUrl], [SupportsPartialRendering] ) VALUES ( @PackageId, N'MLTITLE', N'DesktopModules/ModuleLocalization/MLTitle.ascx', NULL, NULL, 0 ) END
2. Installation Failed - ResourceFile
I have idea how to deal with first error. But I have no clue what's the meaning of the second error.
Please help ,we need it asap.
|