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 ...SQL Timeout expired errors when installing modules. DNN 5.1.2SQL Timeout expired errors when installing modules. DNN 5.1.2
Previous
 
Next
New Post
10/8/2009 5:46 PM
 

 I have read this with interest as I got the same SQL time out error today when trying to install a module on one of my sites (DNN 5.1.1 version) .. I emailed the supplier of the module to see if they had any idea.. however in the mean time I went to do and upgrade from 5.0.0  to the latest 5.1.4 version on another site i run that's hosted with the same hosting company (site is stand alone and not through a portal in dnn)  and i got the following..

Current Assembly Version: 05.01.04

Current Database Version: 05.00.00

 

Upgrade Status Report

00:00:00.031 - Upgrading to Version: 05.01.04

00:00:01.140 -   Executing Script: 05.00.01.SqlDataProvider Error! (see 05.00.01.log for more information)

00:00:56.968 -   Executing Script: 05.01.00.SqlDataProvider Error! (see 05.01.00.log for more information)

00:01:52.921 -   Executing Script: 05.01.01.SqlDataProvider Error! (see 05.01.01.log for more information)

00:02:31.750 -   Executing Script: 05.01.02.SqlDataProvider Error! (see 05.01.02.log for more information)

00:03:07.453 -   Executing Script: 05.01.03.SqlDataProvider Error! (see 05.01.03.log for more information)

00:03:39.062 -   Executing Script: 05.01.04.SqlDataProvider Error! (see 05.01.04.log for more information)

00:04:24.671 -   Executing Application Upgrades: 05.00.01 Success

00:04:26.625 -   Executing Application Upgrades: 05.01.00 Success

00:04:52.109 -   Executing Application Upgrades: 05.01.01 Success

00:04:52.125 -   Executing Application Upgrades: 05.01.02 Success

00:04:52.125 -   Executing Application Upgrades: 05.01.03 Success

00:04:58.640 -   Executing Application Upgrades: 05.01.04 Success

00:04:58.640 -   Cleaning Up Files: 05.00.01 Success

00:04:59.156 -   Cleaning Up Files: 05.01.00 Success

00:04:59.250 -   Cleaning Up Files: 05.01.01 Success

00:04:59.250 -   Cleaning Up Files: 05.01.02 Success

00:04:59.250 -   Cleaning Up Files: 05.01.03 Success

00:04:59.250 -   Cleaning Up Files: 05.01.04 Success

00:04:59.250 -   Updating Config Files: 05.00.01 Success

00:04:59.250 -   Updating Config Files: 05.01.00 Success

00:04:59.250 -   Updating Config Files: 05.01.01 Success

00:04:59.250 -   Updating Config Files: 05.01.02 Success

00:04:59.250 -   Updating Config Files: 05.01.03 Success

00:04:59.250 -   Updating Config Files: 05.01.04 Success

00:04:59.250 - Performing General Upgrades

00:04:59.390 - Installing Optional Modules:

00:04:59.390 -   Installing Package File HTML_Community_05.01.04_Install:  Error!

00:05:36.625 - Installing Optional Skins:

00:05:36.625 - Installing Optional Containers:

00:05:36.625 - Installing Optional Languages:

00:05:36.625 - Installing Optional Providers:

00:05:36.625 -   Installing Package File AspNetMembershipProvider_05.01.03_Install:  Success

00:05:37.171 -   Installing Package File CorePermissionProvider_05.01.01_Install:  Success

00:05:37.484 -   Installing Package File DatabaseLoggingProvider_05.01.01_Install:  Success

00:05:37.984 -   Installing Package File DNNMembershipProvider_05.01.03_Install:  Success

00:05:38.781 -   Installing Package File DNNMenuNavigationProvider_05.01.00_Install:  Success

00:05:39.593 -   Installing Package File DNNTreeNavigationProvider_05.01.00_Install:  Success

00:05:40.656 -   Installing Package File FckHtmlEditorProvider_02.00.04_Install:

 

Server Error in '/' Application.

 

Now looking at the log for the sqldataprovider errors they all come up with the sql time out error:

 

System.Data.SqlClient.SqlException: Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.

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='vogardnnusr') 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 [vogardnnusr]' execute (@exec) fetch sp_cursor into @name end deallocate sp_cursor end

 

 I can only assume that this has to do with the way the hosting company has configured his sql server set up as I cannot see any other reason to get the same time out error from two different sites on the same host? 

 

What I need to know now is how to rectify this upgrade failure also..

 

 
New Post
10/9/2009 9:59 AM
 

@AVogar

You problably hav active forums installed, see the log file and remove that sproc. See:

http://support.dotnetnuke.com/issue/ViewIssue.aspx?id=10722&PROJID=2

See also this thread for your Text/HTML module problem: http://www.dotnetnuke.com/Community/Forums/tabid/795/forumid/33/threadid/333741/scope/posts/Default.aspx

Peter


Peter Schotman
Cestus Websites voor DotNetNuke oplossingen in Nederland
Contact us for your custom design and skinning work.
 
New Post
10/9/2009 12:12 PM
 

 If you don't have active forums installed see if you can try the SA fix that worked for me


Chris Hammond
Former DNN Corp Employee, MVP, Core Team Member, Trustee
Christoc.com Software Solutions DotNetNuke Module Development, Upgrades and consulting.
dnnCHAT.com a chat room for DotNetNuke discussions
 
Previous
 
Next
HomeHomeGetting StartedGetting StartedInstalling DNN ...Installing DNN ...SQL Timeout expired errors when installing modules. DNN 5.1.2SQL Timeout expired errors when installing modules. DNN 5.1.2


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