PHP页面未显示错误500

时间:2016-04-16 16:06:22

标签: php

我正在尝试使用PHP创建一个网站,当我运行它时,它会返回The sharedweb.uniwebsite.ac.uk page isn't working sharedweb.uniwebsite.ac.uk is currently unable to handle this request. 500当我点击Details标签时,我会{{1}我做过的。之前的页面确实有效,我正在尝试在登录页面上工作,当我转到Press the reload button to resubmit the data needed to load the page.按钮时,就是我收到错误时

修改

导致错误的代码是

Register

编辑#2

它仍然无法正常工作

1 个答案:

答案 0 :(得分:1)

某处有PHP错误。要显示错误,请在脚本顶部添加以下行:

error_reporting(E_ALL);
ini_set("display_errors", 1);

(修复错误后删除它们,以后不再泄露任何秘密)

可能性2是检查你的error.log,它会告诉你它为什么不起作用。