how to solve 500 Internal Server Error in joomla?

user824984 picture user824984 · Sep 14, 2010 · Viewed 54.2k times · Source

i use com_google_map_vision in my site.when i click on view map then following error display:-

500 Internal Server Error

Internal Server Error

The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator, [email protected] and inform them of the time the error occurred, and anything you might have done that may have caused the error.

More information about this error may be available in the server error log.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.

how to solve this error hope someone help me

Answer

silvo picture silvo · Sep 14, 2010

In general the first step when dealing with this sort of error would be to turn on error reporting by putting the following at the beginning of your index.php:

ini_set('display_errors','On'); 
error_reporting(E_ALL);

Doing so might give you some php specific error message with which you will find it easier to troubleshoot the problem.