How to solve "500 Internal Server Error"?
Your site can show "500 Internal Server Error" because of the following reasons
- Main Reason for Internal Server Error is misconfiguration. if there is issue in any of the file in your script it will show "500 Internal Server Error".
- Enable error reporting for your Hosting Account to get exactly which file is causing issue. you can enable error reporting using .htaccess or php.ini file.Modify your .htaccess file and Add the following code there.
# Displaying PHP errors
php_flag display_errors on
php_value error_reporting 6143OR update the following code in your php.ini file.
error_reporting = E_ALL
display_errors = On
After that open your website it will show the php error which is causing problem. Your developer need to correct that.
If still you are getting the same error on your Site. Please raise a ticket to our Support team.

