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...Upgrade from 6.1.2 to 6.2 - Login not workingUpgrade from 6.1.2 to 6.2 - Login not working
Previous
 
Next
New Post
5/31/2012 2:09 PM
Accepted Answer 

Cheers, thats very helpful - that API method eventually calls the UpdateUser stored procedure which updates both the Users and UserPortals tables, so it's probable the error lies there.First thing to do is check the database logs to see if there were issues logged e.g. http://www.dotnetnuke.com/Resources/W...

If there were please post them here.

Secondly, when stored procedure or table upgrades have failed in the past it typically is caused by triggers added to core tables by 3rd party modules, could you please run the following and let me know the results

SELECT trigger_name = sysobjects.name, trigger_owner = USER_NAME(sysobjects.uid),table_schema = s.name, table_name = OBJECT_NAME(parent_obj),
  isupdate = OBJECTPROPERTY( id, 'ExecIsUpdateTrigger'), isdelete = OBJECTPROPERTY( id, 'ExecIsDeleteTrigger'),
  isinsert = OBJECTPROPERTY( id, 'ExecIsInsertTrigger'), isafter = OBJECTPROPERTY( id, 'ExecIsAfterTrigger'),
  isinsteadof = OBJECTPROPERTY( id, 'ExecIsInsteadOfTrigger'),
  [disabled] = OBJECTPROPERTY(id, 'ExecIsTriggerDisabled')
FROM sysobjects INNER JOIN sysusers ON sysobjects.uid = sysusers.uid
INNER JOIN sys.tables t ON sysobjects.parent_obj = t.object_id
INNER JOIN sys.schemas s ON t.schema_id = s.schema_id
WHERE sysobjects.type = 'TR'

If there are neither database errors logged, or triggers on core tables, then we need to either see the exact query (if you can record it in sql server profiler that would be brilliant), or else can you provide the details of the Tabs table and the UpdateUser stored procedure


Buy the new Professional DNN7: Open Source .NET CMS Platform book Amazon US
 
New Post
5/31/2012 4:04 PM
 

Error in the 06.02.00_Application.log.resources file:

Error: Object reference not set to an instance of an object.   at DotNetNuke.Services.Upgrade.Upgrade.UpgradeToVersion620()
   at DotNetNuke.Services.Upgrade.Upgrade.UpgradeApplication(String providerPath, Version version, Boolean writeFeedback)

I think that would be a pretty good indication that the upgrade didn't go as it should.

Results of the query you gave me are:

trigger_name trigger_owner table_schema table_name isupdate isdelete isinsert isafter isinsteadof disabled
MemberRoleSet dbo dbo UserRoles 1 0 1 1 0 0
UserMemberRoleSet dbo dbo Users 1 0 1 1 0 0
ProfileMemberRoleSet dbo dbo UserProfile 1 0 1 1 0 0

 
New Post
5/31/2012 4:06 PM
 
Wow, I just realized that these are triggers I created. I'll have to go back through and see what's going on with the updates I'm calling. I'll post back results.
 
New Post
5/31/2012 4:09 PM
 
Bingo, fixed the stored procedure I was calling from the trigger and we're good to go now. Cathal, I cannot thank you enough for your help!
 
New Post
5/31/2012 4:55 PM
 
good stuff, glad to be of help.

Buy the new Professional DNN7: Open Source .NET CMS Platform book Amazon US
 
Previous
 
Next
HomeHomeUsing DNN Platf...Using DNN Platf...Upgrading DNN P...Upgrading DNN P...Upgrade from 6.1.2 to 6.2 - Login not workingUpgrade from 6.1.2 to 6.2 - Login not working


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