我刚刚在本地 wamp 服务器中完成了我的应用程序的测试,并将它们转移到了我的 centos VPS,它基本上是一个灯堆栈。问题是,我的许多包含 html 内容的 .php 文件在其中没有正确显示。这是一个例子
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>
Tailor Management - Order Details
</title>
</head>
<body>
<div align="center">
<h1>
Order Details
</h1>
</div>
<div style="float: right; margin-right: 10px; background-color: #fe6154; border:2px;">
<table>
<tr>
<td>
<img src="images/blank.png" />
</td>
<td>
<img src="images/1.png" />
</td>
<td>
<img src="images/2.png" />
</td>
<td>
<img src="images/3.png" />
</td>
</tr>
</table>
</div>
<table id="tfhover" class="tftable" border="1">
<tr>
<th>
Oid
</th>
<th>
Cusid
</th>
<th>
Type
</th>
<th>
I-Date
</th>
<th>
D-Date
</th>
<th>
Quan
</th>
<th>
Rate
</th>
<th>
Price
</th>
<th>
Comments
</th>
<th>
Status
</th>
<th>
Details
</th>
</tr>
<?php
.....
?>
<form name="v_order" method="POST" action="o_processor.php">
<?php
........
?>
<tr style="background-color:<?php echo $color; ?>">
<td>
<input type="text" name = "oid[]" class="inp-form-oid" readonly value ="<?php echo $oid[$counter]; ?>"/>
</td>
<td>
<input type="text" name = "cusid[]" class="inp-form-oid" readonly value ="<?php echo $cusid[$counter]; ?>"/>
</td>
<td>
<input type="text" name = "type[]" class="inp-form-oid" value ="<?php echo $otype[$counter]; ?>" />
</td>
<td>
<input type="text" name = "idate[]" class="inp-form-oid" value ="<?php $date = new DateTime($idate[$counter]); echo $date->format('d-m-Y'); ?>" />
</td>
<td>
<input type="text" name = "ddate[]" class="inp-form-oid" value ="<?php $date = new DateTime($ddate[$counter]); echo $date->format('d-m-Y'); ?>" />
</td>
<td>
<input type="text" name = "quan[]" class="inp-form-oid" value ="<?php echo $quan[$counter]; ?>" />
</td>
<td>
<input type="text" name = "rate[]" class="inp-form-oid" value ="<?php echo $rate[$counter]; ?>" />
</td>
<td>
<input type="text" name = "price[]" class="inp-form-oid" value ="<?php echo $price[$counter]; ?>" />
</td>
<td>
<textarea name="comments[]" rows="2" cols="8"><?php echo $comments[$counter]; ?></textarea>
</td>
<td>
<label>
<input type="checkbox" name="ready[]" value ="<?php echo $oid[$counter]; ?>" <?php $status[$counter];
if($status[$counter] == 3){
echo 'checked';
} ?>/>Ready
</label>
<label>
<input type="checkbox" name="done[]" value ="<?php echo $oid[$counter]; ?>" <?php $status[$counter];
if($status[$counter] == 4){
echo 'checked';
} ?>/>Done
</label>
<label>
<input type="checkbox" name ="cancel[]" value ="<?php echo $oid[$counter]; ?>"/>Cancel
</label>
</td>
<td>
<a href="detail.php?oid=<?php echo $oid[$counter];?>" target="_blank">
Order Details
</a> |
<a href="cust_detail.php?oid=<?php echo $oid[$counter];?>" target="_blank">
Cust Details
</a> |
<a href="emp_detail.php?oid=<?php echo $oid[$counter];?>" target="_blank">
Emp Details
</a>
</td>
</tr>
<?php
$color = "#ffff";
}
?>
<div align="center">
<table style="margin-left:auto;margin-right:auto;margin-top: 40px;">
<td>
<input type="submit" value="Submit" style="width:150px; height: 60px;" />
</td>
</table>
</div>
</form>
</table>
</body>
</html>
此代码在我的生产服务器上运行时显示如下所示的页面
但是在 centos VPS 上运行时,同一页面看起来像这样
我已经通过手动运行它们来检查 sql 查询是否运行良好,sql 连接也很好。
我现在已经对灯泡进行了 3 次全新安装,但仍然出现相同的错误。有谁知道为什么会这样?关于如何解决这个问题的一些建议会很棒。
PS:- 我试图在 serverfault 中问这个问题,但它不会让我发布截图,因为我在那里没有 10 个声望点,如果这不是问这个问题的正确地方,很抱歉。