我有一个运行IIS的Windows Server 2012 R2。我在IIS管理器中创建了一个新网站,然后我从''默认'中复制了我的文件。网站。关于'默认'网站我的PHP和我的所有代码工作,但现在它给了我500 - 内部服务器错误。 http://85.214.59.49:90/?p=Home
我不知道那里有什么问题,但这是我的index.php的代码
<?php
session_start();
require("system/configuration.php");
$mysql = mysql_connect($mysql_host, $mysql_user, $mysql_pass, $mysql_database);
if(!$mysql) {
print "ERROR: Kan niet verbinden met database";
exit;
}
if(!$installed) {
echo 'ERROR: Website is onder constructie';
exit;
}
foreach(glob("system/modules/*.php") as $file) {
require($file);
}
if(!PAGE::Exists()) {
header("Location: ?p=Home");
}
//login the user.
if(isset($_POST['username']) AND isset($_POST['password'])) {
user::login($_POST['username'], $_POST['password']);
}
//logout the user.
if(isset($_POST['logout'])) {
user::logout();
}
user::updateData();
PAGE::TOP();
PAGE::BODY();
PAGE::FOOTER();
mysql_close($mysql);
db::disconnect();
?>
如果有人知道我在做什么有什么不对,那么你的帮助真的很感激,我也一直在寻找这个问题,而且我不能用我得到的结果弄明白。