我最近设置了一个带LAMP的Fedora 20 VPS。我的PHP工作正常,您可以从下面的输出中看到: http://talkoot.co.in/info.php
我的问题是当我访问下面的页面时,php脚本被打印出来而不是被执行。如果有一个观看来源'然后整个代码都可见。 http://talkoot.co.in/WebBackend/admin/login.php
有人能帮助我吗?这是login.php的代码:
<?php
include 'init.php';
if(isset($_SESSION['admin'])){
header('Location: index.php');
}
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<title>Login - CPanel</title>
<link type="text/css" rel="stylesheet" href="libs/css/materialize.min.css" media="screen,projection"/>
<link type="text/css" rel="stylesheet" href="libs/css/style.css" media="screen,projection"/>
</head>
<body>
<div class="container">
<div class="card publish-form-container">
<?php
if(isset($_POST['username'],$_POST['password'])){
$__USERS->adminLogin($_POST);
}
?>
<form class="col s12" method="POST" action="" >
<div class="input-field">
<input id="username-field" type="text" name="username">
<label for="username-field">Username...</label>
</div>
<div class="input-field">
<input id="password-field" type="password" name="password">
<label for="password-field">Password...</label>
</div>
<div>
<button class="btn waves-effect waves-light pull-right" type="submit">Login
<i class="mdi-content-send right"></i>
</button>
</div>
</form>
</div><!-- Post Card //-->
</div>
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script type="text/javascript" src="libs/js/materialize.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('.materialboxed').materialbox();
});
</script>
</body>
</html>
答案 0 :(得分:0)
正如我在你的phpinfo页面中看到的那样:
short_open_tag Off Off
这意味着现在允许短开标签
因此,您在短标记<? ?>
中放置的任何内容都不会被解析为PHP。您宁愿将其放在标准标记<?php ?>
块中。
答案 1 :(得分:0)
您的服务器未启用Short Open Tag有两种情况
short_open_tag = On
或使用htaccess <?php
代替<?
P.S:我已经分享了一个链接,可以解释为什么我提出了2个选项