xamppのコンパネにてスタートを押すと、下記のようなエラーが発生します。
ポート番号などを変更してみましたが、同様でした。
原因と解決策をご教示いただけないでしょうか。
※参考にしたサイト
https://www.adminweb.jp/apache/ini/index3.html
エラー内容
Status change detected: stopped Error: Apache shutdown unexpectedly. This may be due to a blocked port, missing dependencies, improper privileges, a crash, or a shutdown by another method. Press the Logs button to view error logs and check the Windows Event Viewer for more clues If you need more help, copy and post this entire log window on the forums
httpd.confファイルの中身
略 Define SRVROOT "C:/xampp/apache" ServerRoot "C:/xampp/apache" 略 Listen 8080 <Directory /> AllowOverride none Require all denied </Directory> DocumentRoot "C:/xampp/htdocs" <Directory "C:/xampp/htdocs"> AllowOverride All # # Controls who can get stuff from this server. # Require all granted </Directory> <Directory "C:/xampp/cgi-bin"> AllowOverride All Options None Require all granted </Directory> 略
httpd-ssl.confの内容
略 Listen 4443 略 <VirtualHost _default_:4443> # General setup for the virtual host DocumentRoot "C:/xampp/htdocs" ServerName www.example.com:4433 #SeverName localhost:8080 ServerAdmin admin@example.com ErrorLog "C:/xampp/apache/logs/error.log" TransferLog "C:/xampp/apache/logs/access.log" <Directory "C:/xampp/apache/cgi-bin"> SSLOptions +StdEnvVars </Directory> </VirtualHost>
あなたの回答
tips
プレビュー