I am getting Internal Server Error (500)

This error is generalized when there is a problem the server cannot process a request to the site you are on. At the same time, the browser cannot tell exactly what went wrong.
It can arise for many reasons. Let's take a look at the most common ones.

1. Invalid entry in the .htaccess file
Check the file configuration, make sure the syntax is correct, try commenting out some of the settings. If no problems are found here, then add the following entry at the beginning of .htaccess:
php_flag display_errors 1
This will enable advanced PHP error reporting to help us further.

2. Incorrect PHP syntax
By enabling the extended PHP error output, we find out what the problem is. Most often it consists in the incorrect spelling of PHP syntax.

3. Invalid rights to folders or files
Set permissions to 755 for folders and 644 for files.

4. PHP timeout
If your PHP script is trying to create a lot of external connections, this can cause a timeout and in turn cause a 500 error. You may need to add some kind of timeout rules to your script. Try to search for a solution to the problem in Google by specifying the query "script name + internal server error"

  • 47 Пользователей нашли это полезным
Помог ли вам данный ответ?

Статьи по Теме

Я вижу пустую / белую страницу (если сайт создан на PHP)

Если Ваш сайт основан на PHP, наиболее вероятная причина проблемы, что Вы где-то пропустили...

Помогите, я удалил файлы.

Бэкапы автоматически создаются еженедельно на Премиум тарифе и ежедневно на Бизнес плане. Вы...

Я получаю ошибку доступа при импортировании базы данных через phpMyAdmin

Если ошибка доступа отображается, когда Вы пытаетесь импортировать бэкап базы данных MySQL через...

Я вижу старое содержимое сайта после загрузки новых файлов

Скорее всего, Ваш браузер хранит старые копии в кэше для быстрой загрузки Вашего сайта. Вам нужно...

Мой сайт не находится через поисковые системы

Данная проблема не связана с хостингом, скорее проблема в самом сайте. Пожалуйста, выполните...