XAMPP Apache error: client refused server configuration

I just started my computer and Apache in XAMPP no longer works. I suspect this is because I first accessed the server for my parents site today.

The error log reports this:

[Sun Aug 04 09:15:35.889700 2013] [authz_core:error] [pid 5088:tid 1776] [client ::1:58124] AH01630: client denied by server configuration: C:/Users/James/Desktop/Container/XAMPP/apache/icons/folder.gif, referer: http://localhost/Triiline1/ 

I changed this part of httpd.conf based on them:

the client refused the server configuration and Apache: the client refused the server configuration

 <Directory "C:/Users/James/Desktop/Container/XAMPP/cgi-bin"> AllowOverride All Options None Require local </Directory> 

I tried require all granted and require local , no results.

MySQL is still running in XAMPP. How can i fix this?

UPDATE:

A few hours later I open XAMPP, press start, and it works fine. There is no clue. I am wondering if anyone has an explanation or solution if this happens again.

+6
source share
2 answers

Apache in Xampp does not start if there is another application using port 80.

For example: Skype uses port 80. Therefore, when Skype starts, Apache refuses to start, because its working port is not available for registration.

You mentioned that you tried to access the server from your website. How did you do this? Xampp does not allow non-local ip access to the apache server running on the local machine / network.

If you want this behavior to be changed, use Allow All and delete if the Deny option is specified in httpd.conf.

Remember to save the configuration file. Restart the Apache server to apply the new rule.

Hooray..!!

0
source

Try disconnecting another SQL server running in the background.

Go to services.msc and find all other SQL servers or server agents and disable them.

Finally, Apache will start.

0
source

Source: https://habr.com/ru/post/951014/


All Articles