Iis there is a problem with the resource you are looking for, and it cannot be displayed.

500 - Internal server error hatasının çözümü nedir?

Aşağıdaki çözüm yazılım geliştiriciler için yapılması gerekenleri anlatmaktadır. Normal bir kullanıcıysanız ve bir web sitesinde karşınıza  500 - Internal server error hatası geliyorsa bu durumda hata sunucu taraflıdır, yani sizin hatayı çözmeniz mümkün değildir. Hatayı web sitesinin sahibinin düzeltmesi gerekir.

500 - Internal server error hatası nasıl çözülür?

IIS üzerinde çalışan web sitelerinde 500 - Internal server error hatası sıkça karşılaşılan bir hata mesajıdır.

Aslında 500 - Internal server error hatası kapalı bir hata mesajıdır. Yani hatanın nerede olduğu güvenlik açısından gizlenmiş durumdadır.  Bu olası web.config hatalarında kullanıcılar tarafından görülmemesi gereken satırların ekrana basılmasını, yine kod içerisinde gizli kalması gereken satırların hata yüzünden tüm kullanıcılara servis edilmesinin önüne geçer.

 500 - Internal server error hatasının çözümü için ilk önce web.config dosyası üzerinden hata detayını ekrana yazdırmak gerekir.

Hata detayını ekrana yazdırmak için web.config dosyanızı şu şekilde düzenleyin:

IIS 6 kullanıyorsanız;
 

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

IIS 7, IIS 7.5, IIS 8.5 kullanıyorsanız;

<configuration> <system.webServer> <httpErrors errorMode="Detailed" /> </system.webServer> <system.web> <customErrors mode="Off"/> </system.web> </configuration>

olarak web.config dosyanızı düzenleyin. Bu işlemden sonra ekrana gelecek hata mesajı şu şekilde değişecektir:

HTTP Error 500.19 - Internal Server Error The requested page cannot be accessed because the related configuration data for the page is invalid. Detailed Error Information: Module DefaultDocumentModule Notification ExecuteRequestHandler Handler StaticFile Error Code 0x800700b7 Config Error Cannot add duplicate collection entry of type 'add' with unique key attribute 'value' set to 'index.aspx' Config File \\?\D:\vhosts\uzmanim.net\httpdocs\web.config Requested URL http://www.uzmanim.net:80/ Physical Path D:\vhosts\uzmanim.net\httpdocs Logon Method Anonymous Logon User Anonymous Config Source: 93: <files> 94: <add value="index.aspx" /> 95: </files>

Bu hata mesajında hata web.config dosyasındaki illegal bir yapılandırmadan kaynaklanmaktadır. Config source  bölümünde hataya sebep olan satır görüntülenmektedir. Bu satırın düzenlemesi ile sorun giderilecektir.

500 - Internal server error hatası kapalı bir hata mesajıdır. Hatanın çözümü için mutlaka detaylı hesa mesajı görüntülenmeli ve bu doğrultuda işlem yapılmalıdır

Örneğin uygulamanız .Net Framework 4 gerektirirken sizin yapılandırmanız .Net Framework 2.0 ise o zaman yine karşınıza 500 - Internal server error hatası çıkar. Hata detayını açtığınız zaman karşınıza

Server Error in '/' Application. Configuration Error Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately. Parser Error Message: Unrecognized attribute 'targetFramework'. Note that attribute names are case-sensitive. Source Error: 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. Source File: D:\vhosts\uzmanim.net\httpdocs\web.config Line: 42 Version Information: Microsoft .NET Framework Version:2.0.50727.8009; ASP.NET Version:2.0.50727.8015

gibi tamamen farklı bir hata mesajı çıkar.

Yukarıdaki örneklerde görüldüğü gibi 500 - Internal server error hatasını çözmek için ilk adım web.config dosyası üzerinden hata detayını açmak olmalı sonra da alınan hataya göre bir yaklaşım gerçekleştirilmelidir.

Iis there is a problem with the resource you are looking for, and it cannot be displayed.
alattin (16449)
5 yıl önce cevaplandı


Como resolver erro There is a problem with the resource you are looking for, and it cannot be displayed?

"Server Error

500 - Internal server error.
There is a problem with the resource you are looking for, and it cannot be displayed."

Como posso consertar esse problema?

Agradeço desde já por sua ajuda.

Troubleshooting an HTTP 500 internal server error is like solving a mystery.

You don't know what exactly happened or why it happened — all you know is that something's wrong and you need to fix it.

To guide you through the hassle of troubleshooting the dreaded HTTP 500 internal server error, let's go over what it exactly means and its most common causes and solutions.

Iis there is a problem with the resource you are looking for, and it cannot be displayed.

What is an HTTP 500 internal server error?

An HTTP 500 internal server error means your web server is experiencing problems, but it can't pinpoint the specific error or its root causes. When this happens, your website will serve up a general internal server error web page to your site's visitors.

Here's what your 500 error page might look like in your browser:

Iis there is a problem with the resource you are looking for, and it cannot be displayed.

Unlike other server-side errors like a 502 code or a 503 code, a 500 internal server error is it doesn't immediately tell you what the problem is, nor does it tell you how to fix it. If the error persists for too long on your site, it could even negatively impact your SEO.

So, let's dive into a few potential causes of the error. Then, we'll present some solutions so you can try to fix the issue.

Potential Causes of a 500 Internal Server Error

A 500 internal server error is, as the name implies, a general problem with the website's server. More than likely, this means there's an issue or temporary glitch with the website's programming.

Some potential causes of a 500 internal server error include:

  • Corrupted or broken .htaccess file
  • A permissions error
  • Faulty third-party plugins or themes
  • The PHP memory limit being exceeded

Fortunately, there are a few effective solutions for fixing most of these problems.

If You're Trying to Load a Page with a 500 Internal Server Error:

1. Refresh the page.

This might seem obvious, but if it's a temporary loading issue, you might find success if you refresh the page. Before trying anything else in this list, reload the page and see what happens.

2. Come back later.

Since the error is on the server side, I'm willing to bet the website owners are working as quickly as possible to resolve the issue. Give it a few minutes or up to an hour or so, and then reload the URL and see if the development team has fixed the issue.

3. Delete your browser's cookies.

If clearing the browser history doesn't work, you might try deleting your browser's cookies. If the cookies are associated with the error-prone webpage, deleting the cookies might help reload the page.

4. Paste your URL into the website "Down for Everyone or Just Me."

Head to downforeveryoneorjustme.com and paste in the URL where you're seeing the internal server error. You'll either be told that the website is only down for you, or that the website is down for everyone.

Iis there is a problem with the resource you are looking for, and it cannot be displayed.
If it's a problem with your server, this should help assuage any concerns that it's an issue with your own computer.

If the 500 Internal Server Error is on Your Own Website:

1. Deactivate a plugin or theme.

Newly activated software, add-ons, or third-party scripts might be conflicting with your current server configuration. To determine this, try (carefully) deactivating or uninstalling your software add-ons one at a time to identify what exactly is causing the internal server error.

If you run a WordPress website, this is easy to do with plugins. From your dashboard, choose Plugins > Installed Plugins, then deactivate the first plugin. If the error resolves, you know this plugin is part of the issue. Reactivate the first plugin, then repeat this deactivate-reactivate process one at a time for all plugins to determine which ones are causing your error.

Iis there is a problem with the resource you are looking for, and it cannot be displayed.
You might find that having fewer active plugins on your site helps things run more smoothly.

Alternatively, if you just upgraded your software, your current plugins or themes might not be compatible with the new upgrade. Deactivating plugins or themes one at a time until the error disappears is the best way to find the root cause of your problem.

2. Use a plugin like WP Debugging to identify the issue.

If your site is powered by WordPress and you're comfortable with WordPress debugging processes, consider installing a plugin to help you identify the issue with your server.

The debug plugin WP Debugging, for instance, helps you figure out exactly what's wrong with your site, which will result in a speedier fix.

Iis there is a problem with the resource you are looking for, and it cannot be displayed.

Image Source

3. Ensure your PHP setup is configured correctly.

If the issue is related to a PHP timeout, consider creating timeout rules or error handling in your script to resolve the issue. Here's a full list of php.ini directives to configure your PHP setup.

Additionally, wrong permissions on a file or folder that has a script, like a PHP or CGI script, won't allow the script to run. Check your permissions and make sure you set them correctly on your server.

4. Check the code for your site's .htaccess file.

Incorrect coding or improper structure with your .htaccess file could be the reason you're seeing the 500 internal error. The .htaccess file helps you manage how long resources should be stored in a browser's cache. Try editing the file if you're seeing a 500 internal server error.

To locate your .htaccess file, access your website files through a file manager like cPanel or via FTP/SFTP. The file will probably be located in your public_html directory. There's a good chance your server will hide this file from view by default and you'll need to toggle hidden files on to see it.

Iis there is a problem with the resource you are looking for, and it cannot be displayed.

Image Source

Coding errors in .htaccess and custom scripts can also cause an HTTP 500 internal server error.

5. Ensure your new software is installed correctly.

Finally, check to see if your recently installed or upgraded software actually failed to install or upgrade. To refresh your software, check the vendor's website for instructions.

Iis there is a problem with the resource you are looking for, and it cannot be displayed.

Last Resort: Ask a Server Administrator for Help

If troubleshooting popular software problems or debugging server-side scripts doesn't fix your HTTP 500 internal server error, you should read about the most common causes for this type of issue in your server's documentation — an HTTP 500 internal server error can occur in different operating systems for a multitude of reasons.

You can also ask your service provider to access your error logs and find evidence for the root cause of your problem.

Internal server errors are irritating because they're unhelpful — it's basically the web server's way of saying, "Eh, I'm not sure." Hopefully, one of the above steps will resolve the problem so you can get back to life as usual.

Editor's note: This post was originally published in October 2018 and has been updated for comprehensiveness.

 

Iis there is a problem with the resource you are looking for, and it cannot be displayed.

Iis there is a problem with the resource you are looking for, and it cannot be displayed.

Originally published Jul 29, 2021 1:00:00 PM, updated July 29 2021

How do you solve There is a problem with the resource you are looking for and it Cannot be displayed?

There is a problem with the resource you are looking for, and it cannot be displayed. To resolve this issue, set the Enable 32-bit Applications to "False": Open the Internet Information Services (IIS) Manager. Select Application Pools.

What does 500 Internal server error There is a problem with the resource you are looking for and it Cannot be displayed?

A 500 internal server error is, as the name implies, a general problem with the website's server. More than likely, this means there's an issue or temporary glitch with the website's programming. Some potential causes of a 500 internal server error include: Corrupted or broken .

How do I fix 500 error in IIS?

IIS error The error 500.19 is an internal server error often occurring on a server using Microsoft IIS software. It indicates that the configuration data for the page is invalid. To solve the issue, delete the malformed XML element from the Web. config file or from the ApplicationHost.

Why do I keep getting 500 internal server error?

The 500 Internal Server error could be caused by an error during the execution of any policy within Edge or by an error on the target/backend server. The HTTP status code 500 is a generic error response. It means that the server encountered an unexpected condition that prevented it from fulfilling the request.