XAMPP පොඩි උදව්වක්...
4:35:50 PM [Apache] This may be due to a blocked port, missing dependencies,
4:35:50 PM [Apache] improper privileges, a crash, or a shutdown by another method.
4:35:50 PM [Apache] Press the Logs button to view error logs and check
4:35:50 PM [Apache] the Windows Event Viewer for more clues
4:35:50 PM [Apache] If you need more help, copy and post this
4:35:50 PM [Apache] entire log window on the forums
Solution kara {How to solve this problem?
The solution is simple, just change the port from 80 to some other value.
And, how to do that???
Step 1: Go to xampp/apache/conf directory and open httpd.conf in notepad or some other editor. You can also open it directly from the xampp control panel.
Step 2: Find the following code lines and replace as follows:-
#Listen 12.34.56.78:80
Listen 80
Change this port 80 to any number of your choice, here i have taken 8000.
#Listen 12.34.56.78:1234
Listen 8000
Find the following code in the same file httpd.conf
ServerName localhost
Replace with the following, take the same number you have used in upper code.
ServerName localhost:8000
Save and close the httpd.conf file.
Now, restart the xampp control panel and start the apache server again. If it’s working, great, otherwise you need to change another port also i.e. 443 by default.
So, where do you find it?
Open httpd-ssl.conf file located in xampp/apache/conf/original/extra or directly from the xampp control panel
Change
Listen 443
to any port of your choice, here i have taken 4433.
Listen 4433
Change
<VirtualHost _default_:443>
to same port number you have chosen above
<VirtualHost _default_:4433>
Change
ServerName www.example.com:443 or ServerName localhost:443
to
ServerName www.example.com:4433 or ServerName localhost:4433}
eath same result ?
help me
XAMPP
4:35:50 PM [Apache] This may be due to a blocked port, missing dependencies,
4:35:50 PM [Apache] improper privileges, a crash, or a shutdown by another method.
4:35:50 PM [Apache] Press the Logs button to view error logs and check
4:35:50 PM [Apache] the Windows Event Viewer for more clues
4:35:50 PM [Apache] If you need more help, copy and post this
4:35:50 PM [Apache] entire log window on the forums
Solution kara {How to solve this problem?
The solution is simple, just change the port from 80 to some other value.
And, how to do that???
Step 1: Go to xampp/apache/conf directory and open httpd.conf in notepad or some other editor. You can also open it directly from the xampp control panel.
Step 2: Find the following code lines and replace as follows:-
#Listen 12.34.56.78:80
Listen 80
Change this port 80 to any number of your choice, here i have taken 8000.
#Listen 12.34.56.78:1234
Listen 8000
Find the following code in the same file httpd.conf
ServerName localhost
Replace with the following, take the same number you have used in upper code.
ServerName localhost:8000
Save and close the httpd.conf file.
Now, restart the xampp control panel and start the apache server again. If it’s working, great, otherwise you need to change another port also i.e. 443 by default.
So, where do you find it?
Open httpd-ssl.conf file located in xampp/apache/conf/original/extra or directly from the xampp control panel
Change
Listen 443
to any port of your choice, here i have taken 4433.
Listen 4433
Change
<VirtualHost _default_:443>
to same port number you have chosen above
<VirtualHost _default_:4433>
Change
ServerName www.example.com:443 or ServerName localhost:443
to
ServerName www.example.com:4433 or ServerName localhost:4433}
eath same result ?
help me