Hi I am getting this below error. Please let me know the exact steps how to get rid from this error.
By badly need a quick solution as my website is sleeping due to this .
Thanks a lot to all in advance.
Installing DotNetNuke
Version: 04.09.00
Installation Status Report
00:00:00.093 - Installing Version: 4.4.0
00:00:00.093 - Executing Script: DotNetNuke.SetUp.SqlDataProvider
Success
00:00:00.468 - Executing Script: DotNetNuke.Schema.SqlDataProvider
Success
00:02:10.093 - Executing Script: DotNetNuke.Data.SqlDataProvider
Success
00:02:12.203 - Installing MemberRole Provider:
00:02:12.203 - Executing Script: InstallCommon
00:02:15.015 - Executing Script: InstallMembership
00:02:17.875 - Executing Script: InstallProfile
00:02:19.453 - Executing Script: InstallRoles
00:02:21.609 - Upgrading to Version: 4.9.0
00:02:21.734 - Executing Script: 04.04.01.SqlDataProvider
Success
00:02:22.703 - Executing Script: 04.05.00.SqlDataProvider
Success
00:02:32.515 - Executing Script: 04.05.01.SqlDataProvider
Success
00:02:33.203 - Executing Script: 04.05.02.SqlDataProvider
Success
00: - Executing Script: 04.05.03.SqlDataProvider
Success
00:02:36.078 - Executing Script: 04.05.04.SqlDataProvider
Success
00:02:36.859 - Executing Script: 04.05.05.SqlDataProvider
Success
00:02:37.203 - Executing Script: 04.06.00.SqlDataProvider
Success
00:02:44.968 - Executing Script: 04.06.01.SqlDataProvider
Success
00:02:45.171 - Executing Script: 04.06.02.SqlDataProvider
Success
00:02:45.359 - Executing Script: 04.07.00.SqlDataProvider
Success
00:02:47.078 - Executing Script: 04.08.00.SqlDataProvider
Success
00:02:48.359 - Executing Script: 04.08.01.SqlDataProvider
Success
00:02:49.625 - Executing Script: 04.08.02.SqlDataProvider
Success
00:02:49.890 - Executing Script: 04.08.03.SqlDataProvider
Success
00:02:50.078 - Executing Script: 04.08.04.SqlDataProvider
Success
00:02:50.265 - Executing Script: 04.09.00.SqlDataProvider
Success
00:02:50.828 - Performing General Upgrades
00:02:57.031 - Loading Host Settings:
00:03:03.375 - Configuring SuperUser:
00:03:05.375 - Synchronizing Host Files:
00:03:12.281 - Installing Modules:
00:03:12.296 - Installing Module File HTML_04.08.01_Install:
Success
00:03:15.812 - Installing Module File Links_04.00.01_Install:
Success
00:03:19.593 - Executing Additional Scripts:
00:03:19.609 - Creating Portal: My Website
00:04:46.046 -
Error: Thread was being aborted.
Server Error in '/' Application.
Runtime Error
Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.
Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off".
<!-- Web.Config Configuration File -->
<configuration>
<system.web>
<customErrors mode="Off"/>
</system.web>
</configuration>
|
Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL.
<!-- Web.Config Configuration File -->
<configuration>
<system.web>
<customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
</system.web>
</configuration>
|