@Snapey
It is working now, I really appreciate that you here helping me, thanks a lot.
I was able to stop the server and now everything works, I can now stop it with ctrl-c
- To list the process I used
sudo lsof -i
As described in this thread http://stackoverflow.com/questions/27057501/how-to-terminate-old-session-in-iterm2
- Killed process listed under
PID like so...
kill PID#
I have a feeling that the main reason it got locked had something to do with the way I served the page, this is how I originally did it.
php artisan serve --host=http://754.555.345.34 --port=8000
and I have a feeling that you don't have to use the port number as long as you make sure port 8000 is open. This is what I'm using that seem to be working...
php artisan serve --host 754.555.345.34
Please note that besides the port number I also got rid of the =http://
Again I don't know if what I'm describing here had something to do with the fact that I couldn't stop it with ctrl-c or not but that's my story.
Again thanks a lot, you are AWESOME!
EDIT: After playing around a little bit more I got to the conclusion that what messes it up is the http:// because I tried php artisan serve --host=754.555.345.34 --port=8000 and it works fine.