Hi. I have problem written in Subject. I upload my files to server then I wanted to install the donetnuke version 4.0.2 but I saw an error as "Server Error in '/' Application."I don't know the reason so I want help.how can ı solve this problem?what can I
do? Also I saw a notice which was settled ASP.NET version 1.0.is that the reason?Please help me about this subject.
This is the error message:
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".
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.
I found the solution. Thanks to everyone. Hint is in the web.config file. If anyone want the sample file I can send it with email. But I have also a problem with the installation about permissions on SQL server. It's written below :
EXECUTE permission denied on object 'aspnet_CheckSchemaVersion', database 'myDB', owner 'dbo'.
Description:
An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Line 132: Response.Write("<h2>Installation Status Report</h2>") Line 133: Response.Flush() Line 134: Services.Upgrade.Upgrade.InstallDNN(strProviderPath) Line 135: Line 136: Response.Write("<h2>Installation Complete</h2>")
My problem was in my connection to the database I solved my error creating a VB class in the APP_Code folder and everytime I need to access my connection string I call a funtion that returns a string with my connection.
Dim link As String = "connection string"
Public funtion something()
return link
end function
and every time i need the connection I do this
Dim css As New DataAccess()
Dim teste As String = css.Link()
Using con As New System.Data.SqlClient.SqlConnection(teste)
con.Open()
I really don´t know if it was a good solution but at least it´s working now.
Hi folks. I've just spent two days trying to figure out how to access a web page that comes up with the error message:
Server Error in '/' Application.
I know very, very little about computers and after googling myself into a cold sweat for the past two days, downloading internet information services and searching for web.config files, I've realised that I'm a grade one idiot.
As I am not hosting the webpage it seems I can do nothing useful to resolve the access issue. (something, it would seem, that was hysterically obvious to my partner who believe's I am unable to fix the problem on my own!) :)
My question, or request, is for someone to supply me with instructions for the web host, who I am in contact with, so that they can fix the problem and I can avoid a months worth of dishwashing which is the consequence of failing to find a solution to this
problem!
The error as shown on the site is copied below. Any help would be greatly appreciated. :)
Regards,
Charlie
Server Error in '/' Application.
A generic error occurred in GDI+.
Description:
An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.Runtime.InteropServices.ExternalException: A generic error occurred in GDI+.
Source Error:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
ozdemir
Member
9 Points
5 Posts
Server Error in '/' Application.
Dec 31, 2005 06:47 PM|LINK
Hi. I have problem written in Subject. I upload my files to server then I wanted to install the donetnuke version 4.0.2 but I saw an error as "Server Error in '/' Application."I don't know the reason so I want help.how can ı solve this problem?what can I do? Also I saw a notice which was settled ASP.NET version 1.0.is that the reason?Please help me about this subject.
This is the error message:
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".
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.
where is system.web or web.config file?can I change this file or do I have any permissions on this changing?please help me and thank you.
smiling4ever
All-Star
15825 Points
3123 Posts
Re: Server Error in '/' Application.
Dec 31, 2005 11:05 PM|LINK
Hello,
You should set <customErrors mode="Off"/> in your web.config to see the full error description.
web.config is located in the root of DNN application.
Regards
anand_n
Member
369 Points
102 Posts
Re: Server Error in '/' Application.
Jan 02, 2006 02:18 PM|LINK
Microsoft MVP
http://www.learnxpress.com
Blake05
Contributor
2561 Points
511 Posts
Re: Server Error in '/' Application.
Jan 03, 2006 09:11 PM|LINK
Blog - Website: windowscoding.com
ozdemir
Member
9 Points
5 Posts
Re: Server Error in '/' Application.
Jan 04, 2007 06:56 PM|LINK
I found the solution. Thanks to everyone. Hint is in the web.config file. If anyone want the sample file I can send it with email. But I have also a problem with the installation about permissions on SQL server. It's written below :
Installing DotNetNuke
Version: 04.04.00
Installation Status Report
00: - Installing Version: 4.4.000: - Installing Script: DotNetNuke.SetUp.SqlDataProvider Success
00:00:00.015 - Installing Script: DotNetNuke.Schema.SqlDataProvider Success
00:00:03.172 - Installing Script: DotNetNuke.Data.SqlDataProvider Success
00:00:07.281 - Installing MemberRole Provider:
00:00:07.281 - Installing Script: InstallCommon.sql
00:00:07.469 - Installing Script: InstallMembership.sql
00:00:07.641 - Installing Script: InstallProfile.sql
00:00:07.703 - Installing Script: InstallRoles.sql
00:00:07.828 - Performing General Upgrades
00:00:07.891 - Loading Host Settings:
00:00:07.938 - Configuring SuperUser:
Server Error in '/' Application.
EXECUTE permission denied on object 'aspnet_CheckSchemaVersion', database 'myDB', owner 'dbo'.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.Exception Details: System.Data.SqlClient.SqlException: EXECUTE permission denied on object 'aspnet_CheckSchemaVersion', database 'myDB', owner 'dbo'.
Source Error:
Line 132: Response.Write("<h2>Installation Status Report</h2>")Line 133: Response.Flush()
Line 134: Services.Upgrade.Upgrade.InstallDNN(strProviderPath)
Line 135:
Line 136: Response.Write("<h2>Installation Complete</h2>")
Thank you again for your help.
jamwc
Member
2 Points
1 Post
Re: Server Error in '/' Application.
Jul 10, 2007 04:35 PM|LINK
I'm having the same problem "Server Error in '/' Application."--Can you send me your fix?
Dynateck
Member
5 Points
33 Posts
Re: Server Error in '/' Application.
Jul 10, 2007 04:56 PM|LINK
My problem was in my connection to the database I solved my error creating a VB class in the APP_Code folder and everytime I need to access my connection string I call a funtion that returns a string with my connection.
Dim link As String = "connection string"
Public funtion something()
return link
end function
and every time i need the connection I do this
Dim css As New DataAccess()
Dim teste As String = css.Link()
Using con As New System.Data.SqlClient.SqlConnection(teste)
con.Open()
I really don´t know if it was a good solution but at least it´s working now.
re
chog2500
Member
4 Points
2 Posts
Re: Server Error in '/' Application.
Jul 27, 2007 01:04 AM|LINK
Hi folks. I've just spent two days trying to figure out how to access a web page that comes up with the error message:
Server Error in '/' Application.
I know very, very little about computers and after googling myself into a cold sweat for the past two days, downloading internet information services and searching for web.config files, I've realised that I'm a grade one idiot.
As I am not hosting the webpage it seems I can do nothing useful to resolve the access issue. (something, it would seem, that was hysterically obvious to my partner who believe's I am unable to fix the problem on my own!) :)
My question, or request, is for someone to supply me with instructions for the web host, who I am in contact with, so that they can fix the problem and I can avoid a months worth of dishwashing which is the consequence of failing to find a solution to this problem!
The error as shown on the site is copied below. Any help would be greatly appreciated. :)
Regards,
CharlieServer Error in '/' Application.
A generic error occurred in GDI+.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.Exception Details: System.Runtime.InteropServices.ExternalException: A generic error occurred in GDI+.
Source Error:
Stack Trace:
Version Information: Microsoft .NET Framework Version:1.1.4322.2407; ASP.NET Version:1.1.4322.2407
sdupas
Member
487 Points
142 Posts
Re: Server Error in '/' Application.
Jul 27, 2007 07:07 AM|LINK
Hello,
It looks like a permission is missing on the folder it tries to save the picture. Make sure the "ASPNET" account has write permission in that folder.
If it does not help, please provide more information on the application (is it a product?) and when this error occurs.
Regards,
Samuel
--
Samuel Dupas
Planet Technologies EMEA -- http://www.go-planet.com
sdupas
Member
487 Points
142 Posts
Re: Server Error in '/' Application.
Jul 27, 2007 07:31 AM|LINK
Hello,
It looks like a permission is missing on the folder it tries to save the picture. Make sure the "ASPNET" account has write permission in that folder.
If it does not help, please provide more information on the application (is it a product?) and when this error occurs.
Regards,
Samuel
--
Samuel Dupas
Planet Technologies EMEA -- http://www.go-planet.com