search

Home  >  Q&A  >  body text

PHP Artisan server not working | PHP Artisan server not working Laravel |

PHP Artisan Serve not working | PHP Artisan service not working Laravel | php artisan serve is not running through this problem, can I use this "php -S localhost:8000-t public/"

I used this command instead of php-S localhost:8000-t public command

P粉787934476P粉787934476524 days ago632

reply all(1)I'll reply

  • P粉691461301

    P粉6914613012023-07-18 12:58:53

    您的项目已安装在xampp上。如果您打算在xampp上安装Laravel,请阅读以下指南:

    Laravel Xampp设置(Windows和Mac)

    否则,请按照以下步骤进行操作:一般来说,无需在xampp上安装Laravel。您可以将Laravel项目安装在计算机的其他位置。然后,在Windows命令行中使用上述命令,并使用cd命令进入所需的文件夹。

    例如,我按以下方式安装我的Laravel项目:

    1- 安装PHP、MySQL和Apache(您可以使用xampp或wamp或类似这两个程序的任何其他程序,或在系统中手动安装和运行这些项目)

    2- 安装Composer(安装Composer时,必须选择PHP安装位置。)安装 - Windows

    3- 然后,在计算机的任何位置打开命令行,并输入以下命令。

    composer create-project laravel/laravel Test
    4- 完成安装后,输入以下命令进入Laravel安装文件夹:cd Test

    5- 现在运行命令php artisan serve

    reply
    0
  • Cancelreply