views:

33

answers:

4

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

A: 

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.

Abhijeet Pathak
A: 

That's a long shot, but I recently had a similar issue with Community Builder extension. It turned out it was running out of memory, because it was not able to use all available memory. Adding the following line to .htaccess solved my problem:

RLimitMEM MAX MAX

I added it right at the beginning of the file. It supposedly allows a php script to use more of the memory assigned in php.ini...

silvo
You set allowed memory for request to be maximum resource limit http://httpd.apache.org/docs/current/mod/core.html#rlimitmem. This is bad! If 1 request hangs up because of w/e reason, the server will not be usable at all. You should have modified `memory_limit` in `php.ini` to 32MB-64MB depending on your requirements.
Alex
I don't care if it's good or bad, I care about the results. I have 128MB in php.ini and it did not help. RlimitMEM did help, though.
silvo
Well if it helped, you might want to consider giving @silvo a credit for his help. Give him +1 for his effort and accept his answer as correct one!
Alex
A: 

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 I will find it easier to trouble shoot the problem.

silvo
A: 

Try recursively setting the permissions on components/com_google_map_vision and administrator/components/com_google_map_vision to 755 for folders and 644 for files.

This type of error is usually due to a permissions issue in Joomla.

Martin