我一直在尝试在Cloud9 IDE上导入现有的Laravel项目。我设置并安装了所需的一切但无法加载网络。开发人员控制台显示" 无法加载资源:服务器响应状态为500(内部服务器错误)"
很多人说这是关于"存储"的书面许可。和" bootstraps"文件夹,所以我给了整个工作区中所有文件的书面许可,但它仍然给出了同样的错误。我查看了apache错误日志,但无法看到相应的日志。此外,正常的PHP文件(hello world)已成功加载,但未加载与Laravel相关的页面。 public / index.php的代码:
需要 DIR 。' /../ bootstrap / autoload.php';
$ app = require_once DIR 。' /../ bootstrap / app.php';
$ kernel = $ app-> make(Illuminate \ Contracts \ Http \ Kernel :: class);
$ response = $ kernel-> handle( $ request = Illuminate \ Http \ Request :: capture());
$响应 - >置于();
$ kernel-> terminate($ request,$ response);
状态500错误显示在 $ response-> send();