I always get this error : "Server Error in '/' Application. Runtime error" when i want to launch my site, its online, and when i want to debug it localy it works fine, but only when i put it online I get that error...
you need to set custom errors to "off" in your web.config so you can see the real problem (exception details) on the remote machine:
<customErrors mode="Off" />
you need to set custom errors to "off" in your web.config so you can see the real problem (exception details) on the remote machine:
<customErrors mode="Off" />
I do this but i get the same problem, nothing is changed...
Is the site setup to use the correct version of the .NET framework? Like in IIS? Sounds like it could be set to run on 1.1....
yes indeed, you are good :) but do you know a way so i can put the site anyway online even if it is on .NET Framework 1.1? Maybe with convertion or somthing like that?
Is the site setup to use the correct version of the .NET framework? Like in IIS? Sounds like it could be set to run on 1.1....
yes indeed, you are good :) but do you know a way so i can put the site anyway online even if it is on .NET Framework 1.1? Maybe with convertion or somthing like that?
I think most people are on 2.0 or later now, but, if you code uses features ONLY from 1.1 and no 2.0 or greater features, you can pick the framework version through right-clicking on the project, clicking on properties, and selecting a target framework or
1.1.
I think most people are on 2.0 or later now, but, if you code uses features ONLY from 1.1 and no 2.0 or greater features, you can pick the framework version through right-clicking on the project, clicking on properties, and selecting a target framework or
1.1.
how do you know this? How do you know if there are only featers from 1.1 in it?
Can i ask you somthing else? (I'll do it any way [:)] )
i've integrated the FCKeditor that is standard with the thebeerhous starter kit, but how do you save the things you write? i keep pressing the save button (the disket) but it just refresh, nothing else...
There is no way, no how you can run this site under 1.1. Almost the entire code depends on 2.0 (except maybe the data caching and a few other minor things).
Also, you cannot target 1.1 through the build dialog. You can only target 2.0, 3.0, or 3.5.
There is no way, no how you can run this site under 1.1. Almost the entire code depends on 2.0 (except maybe the data caching and a few other minor things).
Also, you cannot target 1.1 through the build dialog. You can only target 2.0, 3.0, or 3.5.
9uqRs
Member
8 Points
21 Posts
Server Error in '/' Application. Runtime error
Feb 18, 2009 01:08 PM|LINK
I always get this error : "Server Error in '/' Application. Runtime error" when i want to launch my site, its online, and when i want to debug it localy it works fine, but only when i put it online I get that error...
Can somebody help me?
Mike Bell
Participant
1079 Points
219 Posts
Re: Server Error in '/' Application. Runtime error
Feb 18, 2009 01:22 PM|LINK
you need to set custom errors to "off" in your web.config so you can see the real problem (exception details) on the remote machine:
<customErrors mode="Off" />
My Code Blog
9uqRs
Member
8 Points
21 Posts
Re: Server Error in '/' Application. Runtime error
Feb 18, 2009 04:46 PM|LINK
I do this but i get the same problem, nothing is changed...
Mike Bell
Participant
1079 Points
219 Posts
Re: Server Error in '/' Application. Runtime error
Feb 18, 2009 08:14 PM|LINK
Is the site setup to use the correct version of the .NET framework? Like in IIS? Sounds like it could be set to run on 1.1....
My Code Blog
9uqRs
Member
8 Points
21 Posts
Re: Server Error in '/' Application. Runtime error
Feb 19, 2009 08:18 AM|LINK
yes indeed, you are good :) but do you know a way so i can put the site anyway online even if it is on .NET Framework 1.1? Maybe with convertion or somthing like that?
9uqRs
Member
8 Points
21 Posts
Re: Server Error in '/' Application. Runtime error
Feb 19, 2009 08:19 AM|LINK
yes indeed, you are good :) but do you know a way so i can put the site anyway online even if it is on .NET Framework 1.1? Maybe with convertion or somthing like that?
Mike Bell
Participant
1079 Points
219 Posts
Re: Server Error in '/' Application. Runtime error
Feb 19, 2009 03:32 PM|LINK
I think most people are on 2.0 or later now, but, if you code uses features ONLY from 1.1 and no 2.0 or greater features, you can pick the framework version through right-clicking on the project, clicking on properties, and selecting a target framework or 1.1.
My Code Blog
9uqRs
Member
8 Points
21 Posts
Re: Server Error in '/' Application. Runtime error
Feb 19, 2009 04:12 PM|LINK
how do you know this? How do you know if there are only featers from 1.1 in it?
Can i ask you somthing else? (I'll do it any way [:)] )
i've integrated the FCKeditor that is standard with the thebeerhous starter kit, but how do you save the things you write? i keep pressing the save button (the disket) but it just refresh, nothing else...
Lee Dumond
Contributor
6404 Points
1173 Posts
Re: Server Error in '/' Application. Runtime error
Feb 20, 2009 05:09 AM|LINK
There is no way, no how you can run this site under 1.1. Almost the entire code depends on 2.0 (except maybe the data caching and a few other minor things).
Also, you cannot target 1.1 through the build dialog. You can only target 2.0, 3.0, or 3.5.
Follow Me on Twitter
9uqRs
Member
8 Points
21 Posts
Re: Server Error in '/' Application. Runtime error
Feb 20, 2009 08:22 AM|LINK
I've marked that as the answer [:)]