Home > Backend Development > PHP Tutorial > 我的yii框架换到Ubuntu就报500错误,文件都是777权限,然后nginx的设置也保证正确的,何解?

我的yii框架换到Ubuntu就报500错误,文件都是777权限,然后nginx的设置也保证正确的,何解?

WBOY
Release: 2016-06-06 20:19:58
Original
1485 people have browsed it

git地址 http://git.oschina.net/nixi8/yiibasc

因为页面是一片空白,然后断点也能正常输出,不太好排错,所以来问一下

回复内容:

git地址 http://git.oschina.net/nixi8/yiibasc

因为页面是一片空白,然后断点也能正常输出,不太好排错,所以来问一下

楼上的答案是正解,vendor下的文件默认不被git跟踪,看下.gitignore里面有写,你把.gitignore 里面/vendor一行去掉,在重新 add commit push 一下

要不然看看nginx 的错误日志

查查文件名大小写的原因,windows文件名大小写是不敏感的

配置PHP的display_error:On, 把错误信息打印出来

nginx错误日志一般在 /var/log/nginx/error.log

有这事?开箱即用的了吧。。看了你的 Git,少了个vendor文件夹。你是用composer方式?估计没完成。。。

index.php 加上

<code class="php">error_reporting(E_ERROR); ini_set('display_errors', 'yes');</code>
Copy after login

来临时打开错误级别和错误显示,500 是内部错误,一般是程序有问题。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template