Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to solve 500 Internal Server Error in joomla?

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

like image 214
user824984 Avatar asked Sep 14 '10 04:09

user824984


People also ask

How do I fix request failed with status code 500?

Most of the time, the issue is only temporarily and can be corrected by trying the page again. You can use the refresh/reload button, pressing F5 , or by trying the URL again from the address bar. Sometimes this error is caused when a service restarts, and you happen to catch it at exactly the wrong time.

What causes 500 errors PHP?

If your PHP script makes external network connections, the connections may time out. If too many connections are attempted and time out, this will cause a "500 Internal Server Error." To prevent these time outs and errors, you'll want to make sure that PHP scripts be coded with some timeout rules.


2 Answers

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.

like image 76
silvo Avatar answered Sep 28 '22 01:09

silvo


Error 500 generally occurs when the (web) server is not configured correctly. Many times it means that there is problem with your .htaccess file. Please check if you need to do any changes to .htaccess file things to work correctly.

like image 41
Abhijeet Pathak Avatar answered Sep 28 '22 01:09

Abhijeet Pathak