Hallo,
my application run completely properly on my local server but as soon as I upload the files to the remote server a get an 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".
I did changed the web.config but I get the same error. Do you know what it could be?
Here is the web.config I'm using:
my application run completely properly on my local server but as soon as I upload the files to the remote server a get an 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".
I did changed the web.config but I get the same error. Do you know what it could be?
Here is the web.config I'm using:
Code:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.web>
<compilation defaultLanguage="visual basic" debug="true" />
<customErrors mode="Off" />
<authentication mode="Forms">
<forms loginUrl="myself_blog.aspx" timeout="30"></forms>
</authentication>
<authorization>
<allow users="?" />
</authorization>
<trace enabled="false" requestLimit="10" pageOutput="false" traceMode="SortByTime" localOnly="true" />
<globalization requestEncoding="utf-8" responseEncoding="utf-8" />
</system.web>
<location path="myself_blog_edit.aspx">
<system.web>
<authorization>
<deny users="?"/>
</authorization>
</system.web>
</location>
</configuration>