How to display my code via IIS Windows-related error messages

From EN Ikoula wiki
⧼vector-jumptonavigation⧽ ⧼vector-jumptosearch⧽

fr:Comment afficher les messages d'erreur liés à mon code sous Windows via IIS en:How to display my code via IIS Windows-related error messages es:Cómo mostrar mi código a través de mensajes de error relacionados con el IIS de Windows pt:Como exibir meu código através de mensagens de erro relacionadas ao IIS Windows it:Come visualizzare il codice tramite i messaggi di errore relativi a Windows IIS nl:Hoe u kunt mijn code via IIS Windows-gerelateerde foutmeldingen weergeven de:Wie mein Code per Windows IIS-bezogene Fehlermeldungen angezeigt zh:如何显示我的代码通过 IIS Windows 相关错误消息 ar:كيفية عرض رمز بلادي عبر رسائل الخطأ المتعلقة IIS Windows ja:IIS Windows 関連のエラー メッセージによって私のコードを表示する方法 pl:Jak wyświetlić mój kod za pośrednictwem wiadomości błąd związany z IIS w systemie Windows ru:Как отобразить мой код с помощью сообщений об ошибках, связанных с IIS Windows ro:Cum pentru a afişa codul meu prin mesajele de eroare legate de IIS Windows he:כיצד להציג את הקוד שלי באמצעות הודעות שגיאה הקשורות IIS Windows en:How to display my code via IIS Windows-related error messages he:כיצד להציג את הקוד שלי באמצעות הודעות שגיאה הקשורות IIS Windows ro:Cum pentru a afişa codul meu prin mesajele de eroare legate de IIS Windows ru:Как отобразить мой код с помощью сообщений об ошибках, связанных с IIS Windows pl:Jak wyświetlić mój kod za pośrednictwem wiadomości błąd związany z IIS w systemie Windows ja:IIS Windows 関連のエラー メッセージによって私のコードを表示する方法 ar:كيفية عرض رمز بلادي عبر رسائل الخطأ المتعلقة IIS Windows zh:如何显示我的代码通过 IIS Windows 相关错误消息 de:Wie mein Code per Windows IIS-bezogene Fehlermeldungen angezeigt nl:Hoe u kunt mijn code via IIS Windows-gerelateerde foutmeldingen weergeven it:Come visualizzare il codice tramite i messaggi di errore relativi a Windows IIS pt:Como exibir meu código através de mensagens de erro relacionadas ao IIS Windows es:Cómo mostrar mi código a través de mensajes de error relacionados con el IIS de Windows fr:Comment afficher les messages d'erreur liés à mon code sous Windows via IIS

This article has been created by an automatic translation software. You can view the article source here.

Introduction

If your code encounters different errors (related for example to the configuration of your Server or problems in your code level )It can be convenient to display errors and those errors-related information to determine the origin of his errors.

Procedure

It is not possible to set these options from the Plesk interface.

You will need to appeal to the web.config file, you will then need to put in the root of your Web directory. Here is its content :

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
	<system.web>
		<customErrors mode="Off" />
	</system.web>
	<system.webServer>
		<httpErrors errorMode="Detailed" />
	</system.webServer>
</configuration>



You are not allowed to post comments.