Internal Server Error help, 500 Error

Internal server errors can be caused by a few different things. The most common reasons are noted below:

  • Bad Permissions, Writeable by Group
  • Bad .htaccess, Invalid Command
  • Exceeding Resources, Nothing in the Error Log

There are steps to take to find out what is causing the errors. To begin troubleshooting:

  1. Log into cPanel.
  2. In the Logs section, click the Error Log icon.

This log will display the last 300 Error Log messages in reverse order. If the Error Log doesn't provide any indication of the issue, try troubleshooting by following the suggestions listed below.

Bad Permissions, Writeable by Group

To troubleshoot this error, check your file permissions.

  1. In cPanel, in the Files section, click File Manager.
  2. Select the button for Web Root (public_html/www).
  3. Place a check mark in the box titled Show Hidden Files (dotfiles).
  4. Click Go.
  5. Review the numbers listed under the Perms column in File Manager.
    • Directories and folders should be set to 755.
    • Executable scripts within the cgi-bin folder must be set to 755.
    • Images, media, and text files like HTML should be set to 644.

Bad .htaccess, Invalid Command

In the (dot) htaccess file, you may have added lines that are either worded incorrectly or conflicting with other coding in the file. The best way to troubleshoot this is to comment out the lines in the .htaccess file.

Always make a copy of the .htacess file before making any changes to it.

You can comment out a line in the .htaccess file by adding # to the beginning of that particular line. For example, if the code in the .htaccess file looks like:

DirectoryIndex default.html
AddType application/x-httpd-php5 php

Then, try commenting it out like so:

DirectoryIndex default.html
#AddType application/x-httpd-php5 php

Broken lines and lines that start with php_flags are the most common mistakes. If you cannot determine which line is the problem, then comment out every line.

After commenting out a line, refresh the site to see if the issue has been resolved. If it has, that confirms that the issue was in that particular line of code in the .htacess file. If the issue has not been resolved, continue troubleshooting by commenting out additional lines and checking the site.

Exceeding Resources, Nothing in the Error Log

It is possible that the 500 error is being caused by too many processes in the server queue.

With SSH (shell) access, you can view the processes running on your account. Simply type this command:

ps faux

Or type the following command to view a specific user's account. (Be sure to replaceusername with the actual username.):

ps faux | grep username

Once you have the process ID (pid), type the following command to kill the specific process. (Be sure to replace pid with the actual process ID.):

kill -9 pid

 
  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

How to Log into Webmail

Webmail is a great feature offered by cPanel. There are two ways that you can log into webmail:...

How Do I Create and Remove an Addon Domain

An addon domain is a secondary domain hosted on a cPanel account. Addon domains typically have...

How Do I Create a MySQL Database, a User, and Then Delete if Needed?

Databases offer a method for managing large amounts of information over the web easily. They are...

How to Generate/Download a Full Backup

A full backup is a backup of all of your files, email, databases, etc. Once initiated, you must...

How to change permissions (chmod) of a file

Permissions can be very important when it comes to hosting your website. Permissions can allow...