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

HomeHomeGetting StartedGetting StartedInstalling DNN ...Installing DNN ...I am beginning to dislike upgrading to version 5I am beginning to dislike upgrading to version 5
Previous
 
Next
New Post
9/22/2009 11:40 AM
 

The problem is I am doing an upgrade not a fresh install so a blank db wont work.

Not sure how to do the case insensitive collation

5.0.1.2 Log File

System.Data.SqlClient.SqlException: Cannot find the object 'front_teamName', because it does not exist or you do not have permission.
Cannot find the object 'front_contactInfo', because it does not exist or you do not have permission.
Cannot find the object 'front_eventCategory', because it does not exist or you do not have permission.
Cannot find the object 'displayMax', because it does not exist or you do not have permission.
Cannot find the object 'filenamePage', because it does not exist or you do not have permission.
Cannot find the object 'findDeepest', because it does not exist or you do not have permission.
Cannot find the object 'homePageID', because it does not exist or you do not have permission.
Cannot find the object 'isRedirect', because it does not exist or you do not have permission.
Cannot find the object 'mainMenu', because it does not exist or you do not have permission.
Cannot find the object 'otherParents', because it does not exist or you do not have permission.
Cannot find the object 'selectChildren', because it does not exist or you do not have permission.
Cannot find the object 'selectChildrenAdmin', because it does not exist or you do not have permission.
Cannot find the object 'selectGrandparents', because it does not exist or you do not have permission.
Cannot find the object 'selectNextChildren', because it does not exist or you do not have permission.
Cannot find the object 'selectPage', because it does not exist or you do not have permission.
Cannot find the object 'selectParentStatus', because it does not exist or you do not have permission.
Cannot find the object 'selectSiblings', because it does not exist or you do not have permission.
Cannot find the object 'selectStaged', because it does not exist or you do not have permission.
Cannot find the object 'subMenu', because it does not exist or you do not have permission.
Cannot find the object 'subMenuAdmin', because it does not exist or you do not have permission.
Cannot find the object 'admin_councilDetails', because it does not exist or you do not have permission.
Cannot find the object 'admin_councils', because it does not exist or you do not have permission.
Cannot find the object 'admin_deleteEvent', because it does not exist or you do not have permission.
Cannot find the object 'admin_deleteRegistrant', because it does not exist or you do not have permission.
Cannot find the object 'admin_deleteUser', because it does not exist or you do not have permission.
Cannot find the object 'admin_distinctEvents', because it does not exist or you do not have permission.
Cannot find the object 'admin_distinctTeams', because it does not exist or you do not have permission.
Cannot find the object 'admin_eventCouncils', because it does not exist or you do not have permission.
Cannot find the object 'admin_eventDetails', because it does not exist or you do not have permission.
Cannot find the object 'admin_insertEvent', because it does not exist or you do not have permission.
Cannot find the object 'admin_insertUser', because it does not exist or you do not have permission.
Cannot find the object 'admin_logon', because it does not exist or you do not have permission.
Cannot find the object 'admin_registrantDetails', because it does not exist or you do not have permission.
Cannot find the object 'admin_updateCouncil', because it does not exist or you do not have permission.
Cannot find the object 'admin_updateEvent', because it does not exist or you do not have permission.
Cannot find the object 'admin_updateUser', because it does not exist or you do not have permission.
Cannot find the object 'admin_userDetails', because it does not exist or you do not have permission.
Cannot find the object 'admin_usersByCouncil', because it does not exist or you do not have permission.
Cannot find the object 'front_distinctCities', because it does not exist or you do not have permission.
Cannot find the object 'front_eventDetails', because it does not exist or you do not have permission.
Cannot find the object 'front_eventsByCity', because it does not exist or you do not have permission.
Cannot find the object 'front_eventsByCity_fa', because it does not exist or you do not have permission.
Cannot find the object 'front_eventsByCity_sp', because it does not exist or you do not have permission.
Cannot find the object 'front_eventsByCity_su', because it does not exist or you do not have permission.
Cannot find the object 'front_eventsByCity_wi', because it does not exist or you do not have permission.
Cannot find the object 'front_insertRegistrant', because it does not exist or you do not have permission.
   at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection)
   at System.Data.SqlClient.SqlInternalConnection.OnError(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 Microsoft.ApplicationBlocks.Data.SqlHelper.ExecuteNonQuery(SqlConnection connection, CommandType commandType, String commandText, SqlParameter[] commandParameters)
   at Microsoft.ApplicationBlocks.Data.SqlHelper.ExecuteNonQuery(String connectionString, CommandType commandType, String commandText, SqlParameter[] commandParameters)
   at Microsoft.ApplicationBlocks.Data.SqlHelper.ExecuteNonQuery(String connectionString, CommandType commandType, String commandText)
   at DotNetNuke.Data.SqlDataProvider.GrantStoredProceduresPermission(String Permission, String LoginOrRole)

if exists (select * from dbo.sysusers where name='scoutsdnn01')  begin    declare @exec nvarchar(2000)     declare @name varchar(150)     declare sp_cursor cursor for select o.name as name     from dbo.sysobjects o     where ( OBJECTPROPERTY(o.id, N'IsProcedure') = 1 or OBJECTPROPERTY(o.id, N'IsExtendedProc') = 1 or OBJECTPROPERTY(o.id, N'IsReplProc') = 1 )     and OBJECTPROPERTY(o.id, N'IsMSShipped') = 0     and o.name not like N'#%%'     and (left(o.name,len('')) = '' or left(o.name,7) = 'aspnet_')     open sp_cursor     fetch sp_cursor into @name     while @@fetch_status >= 0       begin        select @exec = 'grant EXECUTE on ' +  @name  + ' to [scoutsdnn01]'        execute (@exec)        fetch sp_cursor into @name       end     deallocate sp_cursor  end


If you need anyother please let me know.

Nolan

 
New Post
9/22/2009 12:42 PM
 

which version are you upgrading from?

are you using upgrade package?

do not touch web.config, when upgrading from DNN 4.6.2 or later! 


Cheers from Germany,
Sebastian Leupold

dnnWerk - The DotNetNuke Experts   German Spoken DotNetNuke User Group

Speed up your DNN Websites with TurboDNN
 
New Post
9/22/2009 1:30 PM
 

I am using 04.09.00

YEs

Do I need to restore my files or can I just put back the old web.config file.

Nolan

 
New Post
9/22/2009 1:55 PM
 

 try putting back old web.config first.


Cheers from Germany,
Sebastian Leupold

dnnWerk - The DotNetNuke Experts   German Spoken DotNetNuke User Group

Speed up your DNN Websites with TurboDNN
 
New Post
9/22/2009 2:48 PM
 

The upgrade seems to have worked but I have three questions.

1. is the admin and host buttons at the top supposed to do anything, nothing happens when I click on them.

2. I get this message but I have .Net 3.5 installed:

Note: You are running on an old version of the .NET Framework. Future upgrades of the DotNetNuke platform will require .NET 3.5 SP1 or later. If you believe you are running .NET 3.5 SP1 already, please check your web.config file and ensure that the 3.5 or above versions of both System.Core and System.Data.Linq are referenced in the assemblies node.

3. When I go to module definitions ( I am assuming that is where I add modules now) I get this:

Error Error: Module Definitions is currently unavailable.
DotNetNuke.Services.Exceptions.ModuleLoadException: C:\Inetpub\wwwroot\dnn\Admin\ModuleDefinitions\ModuleDefinitions.ascx.vb(61): error BC30311: Value of type 'String' cannot be converted to 'System.Version'. ---> System.Web.HttpCompileException: C:\Inetpub\wwwroot\dnn\Admin\ModuleDefinitions\ModuleDefinitions.ascx.vb(61): error BC30311: Value of type 'String' cannot be converted to 'System.Version'. at System.Web.Compilation.BuildManager.CompileWebFile(VirtualPath virtualPath) at System.Web.Compilation.BuildManager.GetVPathBuildResultInternal(VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile) at System.Web.Compilation.BuildManager.GetVPathBuildResultWithNoAssert(HttpContext context, VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile) at System.Web.UI.TemplateControl.LoadControl(VirtualPath virtualPath) at System.Web.UI.TemplateControl.LoadControl(String virtualPath) at DotNetNuke.UI.ControlUtilities.LoadControl[T](TemplateControl containerControl, String ControlSrc) at DotNetNuke.UI.Modules.ModuleHost.LoadModuleControl() --- End of inner exception stack trace ---

 

Nolan

 
Previous
 
Next
HomeHomeGetting StartedGetting StartedInstalling DNN ...Installing DNN ...I am beginning to dislike upgrading to version 5I am beginning to dislike upgrading to version 5


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