V
V
Valeriu Vodnicear2016-06-07 20:59:31
JavaScript
Valeriu Vodnicear, 2016-06-07 20:59:31

How to free port 80 so that OpenServer works?

faf80acc5b4542489d0ec4fbd487a43f.pngHow to free port 80 so that OpenServer works?
There are no installed programs that could occupy this port, since Windows recently installed.
Writes that the port is occupied by Windwos services.
Does anyone know how to solve this problem?

Answer the question

In order to leave comments, you need to log in

3 answer(s)
K
Ken Jee, 2015-10-05
@Huf

<script src="assets/js/smooth-scroll.js"></script>
        <script type="text/javascript">
    $(document).ready(function(){
      $("#form").submit(function() { //устанавливаем событие отправки для формы с id=form
          var form_data = $(this).serialize(); //собераем все данные из формы
          $.ajax({
          type: "POST", //Метод отправки
          url: "send.php", //путь до php фаила отправителя
          data: form_data,
          success: function() {
               //код в этом блоке выполняется при успешной отправке сообщения
               alert("Ваше сообщение отпрвлено!");
          })
      });
    }); 
});
</script>

L
landergate, 2016-06-07
@vodnicear

By default, all ports are free.
To free port 80, you need to understand what is occupying it.
To find out which program is occupying port 80, you can do this:
cmd
resmon.exe
Network -> Listening Ports
Sort the column by "Port"
TCPView
https://technet.microsoft.com/en-us/sysinternals/b...
A GUI version of netstat showing the status of connections, including ports in use in the LISTENING state.
-----------
Of the components installed by default, port 80 can be occupied by the IIS service .
In the components of the system, it is called - IIS
In services, it can be called:
- W3SVC
- World Wide Web Publishing Services
- Web Publishing Service
Disable the service or uninstall the component.

D
devian3000, 2016-06-07
@devian3000

Maybe just change the port?
The solution is easier. 8080 and all.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question