无法 php artisan 服务:无法打开流:第 21 行的 /home/ 中没有这样的文件或目录
Can't php artisan serve: failed to open stream: No such file or directory in /home/ on line 21
我运行phpartisan修补匠
然后我的vs代码出错了
我正在研究实现
laravel5: chdir(): No such file or directory (errno 2)
我正在执行更改代码所需的操作,我退出了,导致我的代码可以进行作曲家更新。
但是再次启动时,还是报同样的错误
这是错误
[Thu Mar 24 06:18:27 2022] PHP Fatal error: require_once():
Failed opening required
'/home/john/Documents/api4/api4/public/index.php'
(include_path='.:/usr/share/php') in
/home/john/Documents/api4/api4/server.php 第 21 行
this is on line 21 at server.php
if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) {
return false;
}
require_once __DIR__.'/public/index.php' ;
这是修补匠
'alias' => [
//
],
关于 tinker,我仍然不知道该代码的功能如何。我只想弹出并从我打开的页面中学习以指示我执行该代码。
你用过那个代码吗?我的意思是:php artisan tinker?
希望你能通俗易懂地解释我,并从我的问题中指点方向。
谢谢
您必须首先通过 运行 作曲家的安装命令添加 vendors 目录:
composer install
之后更新你的作曲包:
composer update
我运行phpartisan修补匠
然后我的vs代码出错了
我正在研究实现
laravel5: chdir(): No such file or directory (errno 2)
我正在执行更改代码所需的操作,我退出了,导致我的代码可以进行作曲家更新。
但是再次启动时,还是报同样的错误
这是错误
[Thu Mar 24 06:18:27 2022] PHP Fatal error: require_once():
Failed opening required
'/home/john/Documents/api4/api4/public/index.php'
(include_path='.:/usr/share/php') in
/home/john/Documents/api4/api4/server.php 第 21 行
this is on line 21 at server.php
if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) {
return false;
}
require_once __DIR__.'/public/index.php' ;
这是修补匠
'alias' => [
//
],
关于 tinker,我仍然不知道该代码的功能如何。我只想弹出并从我打开的页面中学习以指示我执行该代码。
你用过那个代码吗?我的意思是:php artisan tinker?
希望你能通俗易懂地解释我,并从我的问题中指点方向。
谢谢
您必须首先通过 运行 作曲家的安装命令添加 vendors 目录:
composer install
之后更新你的作曲包:
composer update