Search code examples
phpwindowswamp

Wamp gets packets out of order after Windows restart


Whenever I try to serve project from VS Code, after Windows restart I get message like this:

J���
8.0.29����MNguts]�ےےے�ےك����������uE&)c^L:{�caching_sha2_password�!��ے„#08S01Got packets out of order

After I reinstall Wamp everything works, until I restart Windows.


Solution

  • It was port 3000 being taken by TCP.

    You should open CMD as an administrator and follow up to solve this error.

    netstat -ano | findstr :<PORT> 
    

    Port, in my case, was 3000

    and then

    taskkill /PID <PID> /F
    

    After that, reload the server and enjoy!