Config Serveur? Message d'erreur "Runtime Error"
Bonjour,
J'ai un site avec Basic Authentification, et moi quand je me connecte à une page je la vois très bien, mais j'ai un usager qui se connecte et qui obtient le message d'erreur suivant:
Runtime Error.
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>
Le problème c'est que dans mon web.config voici mon customErrors:
Code:
1 2 3 4
| <customErrors mode="RemoteOnly" defaultRedirect="Tools/Error.aspx">
<!--<error statusCode="403" redirect="NoAccess.htm" />-->
<!--<error statusCode="404" redirect="FileNotFound.htm" />-->
</customErrors> |
Est-ce que quelqu'un saurait m'indiquer d'où vient le problème.
Merci d'avance