How to solve 500 internal server error in joomla?

I use com_google_map_vision on my site. When I click on the view map and then display an error message: -

500 Internal Server Error

Internal Server Error

The server detected an internal error or incorrect configuration and could not complete your request.

Contact the server administrator, webmaster@openxcelltechnolabs.info and inform them of the time the error occurred, and all you could do was raise an error.

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

Also, 404 not found error was detected while trying to use ErrorDocument to process the request.

how to solve this error hope someone helps me

+6
joomla
source share
10 answers

In general, the first step in handling this kind of error would be to include an error report by putting the following at the beginning of your index.php:

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

This may lead to some error message that will be easier to fix the problem.

+9
source share

Error 500 usually occurs when (web server) is configured incorrectly. Many times, this means that there is a problem with your .htaccess file. Check if you need to make any changes to the .htaccess files to work properly.

+2
source share

According to Abhijeet Pathak, this may be due to the .htaccess file, especially the Rewrite module

Check the "Rewrite /" parameter

+1
source share

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

This type of error usually occurs due to a permission issue in Joomla.

0
source share

Change the file resolution as follows.

  • All folders for 755
  • All files for 644
0
source share

This error is caused by file and folder permissions. Files must be chmod 644 and folders 755

Running these commands in the shell solves the problem

 sudo find. -type f-print0 | xargs -0 chmod 0664 sudo find. -type d-print0 | xargs -0 chmod 0775 

PD: enter joomla root before executing commands

0
source share

Because of the IP address, you used an external or completely different one, so your host company refused permission, you must first identify your Ip and then call them to add this Ip to their secure IP addresses.

0
source share

If you download Joomla! on the local development machine, be sure to check to see if mod_rewrite is mod_rewrite . Because it causes an internal server 500 error. In most cases, this happens

  • Because it was never turned on in the first palm
  • A wamp / lamp update may have reset your .conf file
  • The new version of apache may use a different file name or directory for the .conf file.

Uncomment the line in httpd.conf or a file with the name something similar (regardless of whether you name it your stack / tube stack, for example my httpd_uwamp.conf , so yours can change).

And you should be good to go after restarting the server.

0
source share

This is a long shot, but I recently had a similar issue with the Community Builder extension. It turned out that he was running out of memory because he could not use all the available memory. By adding the following line to .htaccess, I solved the problem:

 RLimitMEM MAX MAX 

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

-one
source share

try this, please .. All you have to do is put this line of code in your .htaccess file:

  AddType x-mapp-php5 .php 
-2
source share

All Articles