Bilginin Adresi Ana Sayfa
Forum Anasayfası Forum Anasayfası > Webmaster > Webmaster Genel
  Aktif Konular Aktif Konular RSS - web.config Dosyası  ayarları ile hata mesajlarını gösterme ve devre dışı bırakma
  SSS SSS  Forumu Ara   Events   Kayıt Ol Kayıt Ol  GiriÅŸ GiriÅŸ

web.config Dosyası ayarları ile hata mesajlarını gösterme ve devre dışı bırakma

 Yanıt Yaz Yanıt Yaz
Yazar
Mesaj
invertor Açılır Kutu Gör
Security Professional
Security Professional
Simge
İnventor

Kayıt Tarihi: 18-01-2008
Status: Aktif DeÄŸil
Points: 3365
Mesaj Seçenekleri Mesaj Seçenekleri   Thanks (0) Thanks(0)   Alıntı invertor Alıntı  Yanıt YazCevapla Mesajın Direkt Linki Konu: web.config Dosyası ayarları ile hata mesajlarını gösterme ve devre dışı bırakma
    Gönderim Zamanı: 03-05-2014 Saat 01:40

Disabling Windows Custom Error Messaging

By default, our Windows hosting accounts display a custom error when applications generate an exception. We display a generic error because the detailed error messages allow a malicious user to obtain sensitive information.

To troubleshoot the error, you can modify your web.config file and specify that a detailed error message displays. A detailed error message helps you to locate the specific code that is causing the issue.

CAUTION: The code samples we provide below do not constitute a complete web.config file. Do not replace your existing web.config file with the code we provide. Before changing your web.config file, we recommend creating a backup. 



Sayfanızdaki hata mesajlarını göstermek için size uygun olan  aşağıdaki adımları uygulayın 


Disabling Custom Error Messages / Enabling Detailed Errors on IIS 6

Use the sample code below to display detailed error messages on IIS 6:


<configuration>
    <system.web>
        <customErrors mode="Off"/>
        <compilation debug="true"/>
    </system.web>
</configuration>


Disabling Custom Error Messages / Enabling Detailed Errors on IIS 7

Use the sample code below to display detailed error messages on IIS 7:

<configuration>
    <system.webServer>
        <httpErrors errorMode="Detailed" />
        <asp scriptErrorSentToBrowser="true"/>
    </system.webServer>
    <system.web>
        <customErrors mode="Off"/>
        <compilation debug="true"/>
    </system.web>
</configuration>



Disabling Custom Error Messages / Enabling Detailed Errors on  IIS 8 - IIS 8.5  (Plesk)

Use the sample code below to display detailed error messages on IIS 8:

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







Hata mesajlarını gizlemek için  web.config dosya içeriği aşağıdaki gibi olmalıdır.



<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
      
    </system.webServer>
</configuration>





Düzenleyen invertor - 26-01-2015 Saat 09:19
Yukarı Dön
 Yanıt Yaz Yanıt Yaz

Forum Atla Forum İzinleri Açılır Kutu Gör



Bu Sayfa 0.176 Saniyede Yüklendi.