Internal Server Error

500 Internal Server Error help

First remember that “Internal Server Error” does not mean a server problem. It implies an “internal” problem inside of your own hosting space and files. Here is a quick overview of what will solve this problem, and then followed by step by step on how to do it:
 
1. .htaccess file has problems
In the (dot) htaccess file, you may have added lines that are either worded badly or conflicting. The best way to troubleshoot this is comment out the lines in the htaccess.
 
You can comment out a line in the .htaccess by adding # to the beginning. You are wise to save an original copy of any file before you make changes.
 
For example, if the .htaccess looks like
DirectoryIndex default.html
AddType application/x-httpd-php5 php
 
Then try something like this
DirectoryIndex default.html
#AddType application/x-httpd-php5 php
 
Broken lines and lines that start with php_flag are the most common mistakes. If you cannot determine which line is the problem, then comment out every line.
 
2. Bad permissions, Writable by group
One or more files or folders have permissions higher than 755, which is not allowed by the server. Any software that says you need 777 will work with 755 on our server.
 
Directories and folders should be 755. Executable scripts within the cgi-bin folder must be 755. Images, media, and text files like HTML should be 644.
 
3. Your PHP version is wrong inside the “PHP Configuration” section.
 
4. Your username does not own the folder or files.
 
 
 

My website is showing a "500 Internal Server Error! What is this?"

If you are getting a 500 Internal Server Error, it means that there is a problem with the resource you are looking for, and it cannot be displayed.
 
If this error comes after you install an application like WordPress, Joomla, Drupal, etc., then you may need to reset FastCGI on your account using the steps below.
 
  • Click on the Websites & Domains tab.
  • Click on the domain name near the bottom of the page.
  • Uncheck the box next to PHP support.
  • Click OK. This will take you back to the Websites & Domains tab.
  • Click on your domain name again.
  • Check the box next to PHP support.
  • Click OK again.
  • Refresh your page CTRL+F5.

If its not the case or if it does not resolve the issue, please enable detailed errors. To display error details, you need to:

  • Edit your web.config file
  • Insert the following line of code: <httpErrors errorMode="Detailed" /> just before </system.webServer> tag
  • Save the file
  • Refresh web page to see error details

If this does not solve your problem, please contact Green line technical support.

  • 55 Users Found This Useful
Was this answer helpful?

Related Articles

Error Codes

What are Error Codes? These numbered error codes are how the server tells website visitors about...

503 Service Unavailable

How to fix 503 Service Unavailable error? If you're seeing 503 Service Unavailable errors...

AutoSSL does not work

My AutoSSL does not work If you have purchased AutoSSL service with your package OR if...

Does not load anything

What should I do if my website/cPanel does not load? If your website or cPanel does not...