我正在尝试部署 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
qq_遁去的一_1