Laravel 部署 - 致命错误:在字符串上调用成员函数 make()

我正在尝试部署 Laravel 应用程序(Laravel 5.4.36),并将公共目录的内容上传到 public_html,其他文件夹上传到我的托管用户名的根页脚中。

修改 index.php 路径以根据新路径加载 bootstrap/autoload.php 和 bootstrap/app.php,并且我确保 index.php 有权访问这些文件。

问题是当我尝试访问 index.php 时收到此消息

  Fatal error: Uncaught Error: Call to a member function make() on string in /home/myuser/public_html/index.php:54 Stack trace: #0 {main} thrown in /home/myuser/public_html/index.php on line 54

这里提到的行是

$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);

我还尝试了几个 php 版本,7.1、7.2 和 7.3。我在共享服务器上使用 Apache 和 Cpanel,但我也有该服务器的 root 访问权限,因此我可以重新配置所需的内容。

我跟着本教程https://www.youtube.com/watch?v=6g8G3YQtQt4


30秒到达战场
浏览 158回答 2
2回答

qq_遁去的一_1

我发现了问题$app 是字符串,我以某种方式将其更改为字符串$app =  require_once __DIR__.'/../bel/bootstrap/app.php';它是$app =  __DIR__.'/../bel/bootstrap/app.php';
打开App,查看更多内容
随时随地看视频慕课网APP