server - Laravel php artisan serve doesn't work -


i have laravel 5.3.16 installed. have built projects , until work properly. past few days can't connect local host. use following command on mac terminal,

php artisan serve 

and in terminal it's fine, on browser error of server being busy! can tell me problem?

the issue might time ran 'php artisan' serve wasn't stopped. can check doing following steps:

assuming on osx computer:

  1. open terminal
  2. run: ps -ef | grep php
  3. lookup if there laravel process in use.
  4. get id running instance , kill it.
  5. kill 012345
  6. try run command: php artisan serve again.

Comments

Popular posts from this blog

asp.net - How to correctly use QUERY_STRING in ISAPI rewrite? -

jsf - "PropertyNotWritableException: Illegal Syntax for Set Operation" error when setting value in bean -

arrays - Algorithm to find ideal starting spot in a circle -