Products

Solutions

Resources

Partners

Community

Blog

About

QA

Ideas Test

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

Welcome to the DNN Community Forums, your preferred source of online community support for all things related to DNN.
In order to participate you must be a registered DNNizen

HomeHomeUsing DNN Platf...Using DNN Platf...Upgrading DNN P...Upgrading DNN P...Error Updating Standard DNN Modules after update to 5.3.1Error Updating Standard DNN Modules after update to 5.3.1
Previous
 
Next
New Post
5/10/2010 11:49 AM
 
Nearest I can get to this error right now is:
http://support.dotnetnuke.com/issue/V...

... but I'm not 100% convinced it is related to this problem... it might however supply a clue for Mysteries Inc.


Alex Shirley


 
New Post
5/10/2010 2:46 PM
 
Chad,
  Can you verify if the modules that are impacted have the SupportedFeatures defined in the module manifest?  Do the modules affected use the Version 4 or Version 5 manifest?

If appears there was recent code changes which looks at the supported features nodes.  Also, if you have 2 versions of modules that exhibit the error, I would be happy to test and see if I can isolate the issue.

Joe Brinkman
DNN Corp.
 
New Post
5/11/2010 4:14 AM
 
The guys from Ethuongmai may have a solution/workaround for now.

http://www.longnhi.com/Blogs...

Will provide feedback in a while.
 
New Post
5/11/2010 1:27 PM
 
We had the same problem installing the core Feedback module on v5.4.1. It seem to install about 95% and then crash. The module seemed to be installed but would not appear in the "add modules to page" drop down in the ribbon bar.

The following SQL fixed the problem for us:

>>>>>>>>>>>>>>>>>>

DECLARE @Identifier INT
DECLARE @DesktopModID INT
SET @DesktopModID = (SELECT DesktopModuleID FROM dbo.DesktopModules WHERE FriendlyName='Feedback')
 
-- `dbo.PortalDesktopModules`
INSERT dbo.PortalDesktopModules (PortalID, DesktopModuleID, CreatedByUserID, CreatedOnDate, LastModifiedByUserID, LastModifiedOnDate)
VALUES (0, @DesktopModID, 1, GETDATE(), 1, GETDATE())
SELECT @Identifier = @@IDENTITY
 
-- `dbo.DesktopModulePermission`
INSERT .DesktopModulePermission (PortalDesktopModuleID, PermissionID, AllowAccess, RoleID, UserID, CreatedByUserID, CreatedOnDate, LastModifiedByUserID, LastModifiedOnDate)
VALUES ( @Identifier, 7, -1, 0, NULL, 1, GETDATE(), 1, GETDATE())
GO

<<<<<<<<<<<<<<<<<<

Hope this helps someone.

Thanks

Steve


Solvd Ltd
 
New Post
5/11/2010 2:10 PM
 
For those people who are experiencing issues with this problem, can you post a copy of your EventQueue.config file from Portalst/_default/EventQueue. 

Background:
In 5.3.0 we added a new system event "Application_Start_FirstRequest".  This was needed to address a bug that was a holdover from the change to support the Integrated Pipeline in IIS7.  This ensures that we can handle eventqueue messages after we have loaded PortalSettings into the httpcontext.

We added code in the portal upgrade logic to update the configuration file if this event is not already defined

'Add new EventQueue Event
Dim config As DotNetNuke.Services.EventQueue.Config.EventQueueConfiguration = DotNetNuke.Services.EventQueue.Config.EventQueueConfiguration.GetConfig()
If config IsNot Nothing Then
    If Not config.PublishedEvents.ContainsKey("Application_Start_FirstRequest") Then
        For Each subscriber As DotNetNuke.Services.EventQueue.Config.SubscriberInfo In config.EventQueueSubscribers.Values
            DotNetNuke.Services.EventQueue.Config.EventQueueConfiguration.RegisterEventSubscription(config, "Application_Start_FirstRequest", subscriber)
        Next
  
        DotNetNuke.Services.EventQueue.Config.EventQueueConfiguration.SaveConfig(config, String.Format("{0}EventQueue\EventQueue.config", HostMapPath))
    End If
End If

For some reason this code is not properly upgrading some sites.  I am not sure if it is permissions related or some other bug which I just don't see.

If we can figure out the cause of the failure then we might be able to get this resolved in 5.4.2 otherwise it will have to wait for 5.4.3. (5.4.2 is in testing this week)

Joe Brinkman
DNN Corp.
 
Previous
 
Next
HomeHomeUsing DNN Platf...Using DNN Platf...Upgrading DNN P...Upgrading DNN P...Error Updating Standard DNN Modules after update to 5.3.1Error Updating Standard DNN Modules after update to 5.3.1


These Forums are dedicated to discussion of DNN Platform and Evoq Solutions.

For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:

  1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DNN.
  2. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
  3. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  4. No Flaming or Trolling.
  5. No Profanity, Racism, or Prejudice.
  6. Site Moderators have the final word on approving / removing a thread or post or comment.
  7. English language posting only, please.
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out