Mr_R-88
(Mr_R-88)
March 12, 2024, 2:37pm
1
Can someone please trouble shoot this crash for my HS student. We have tried to back track steps to find the issue, cannot prevent game crash. Screenshot of error message attached
. Student is upset, many hours put into the design. Total loss at this point. I can’t figure out how to fix it for him.
Hey @Mr_R-88 ! Welcome to the forums!
Before continuing, let me make a public service announcement! Back up your projects regularly, everyone! Just in case!
Now, for the crash. Check this thread for any solutions, and let us know if any of this works for you!
In my case, I was messing around with UDP sockets and intentionally connected to a port from a different app. Then tried to connect to that same port through UE5 and it threw the same exception.
So out of curiosity, I googled and found this post. As @Ari_Epic mentioned:
it adds up with my scenario.
So I suggest you do check for the same (if any other app is listening to the same port).
and you can find that from cmd:
netstat -ano | findstr <port_no>
[image]
it would give you the process …