0

我刚刚在本地 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>&nbsp;&nbsp;|&nbsp;&nbsp;
                            <a href="cust_detail.php?oid=<?php echo $oid[$counter];?>" target="_blank">
                                Cust Details
                            </a>&nbsp;&nbsp;|&nbsp;&nbsp;
                            <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>

此代码在我的生产服务器上运行时显示如下所示的页面

在本地 wamp 服务器上运行时的页面

但是在 centos VPS 上运行时,同一页面看起来像这样

在 centos 上运行时的页面

我已经通过手动运行它们来检查 sql 查询是否运行良好,sql 连接也很好。

我现在已经对灯泡进行了 3 次全新安装,但仍然出现相同的错误。有谁知道为什么会这样?关于如何解决这个问题的一些建议会很棒。

PS:- 我试图在 serverfault 中问这个问题,但它不会让我发布截图,因为我在那里没有 10 个声望点,如果这不是问这个问题的正确地方,很抱歉。

4

2 回答 2

1

正如Mike W在检查服务器日志时所建议的那样,我发现那里的错误是

[Fri Oct 11 01:12:14 2013] [error] [client 108.162.222.156] PHP 警告:phpinfo():依赖系统的时区设置是不安全的。您需要使用 date.timezone 设置或 date_default_timezone_set() 函数。如果您使用了这些方法中的任何一种,但仍然收到此警告,您很可能拼错了时区标识符。我们在第 2 行的 /var/www/html/info.php 中为 'EDT/-4.0/DST' 选择了 'America/New_York'

修改 php.ini 文件以添加正确的date.timezone完成了工作,现在页面显示正确

于 2013-10-11T05:21:28.473 回答
-1

I found two error

1) please remove the extra php tags and ..... from your code

<?php

        .....
                ?>

2) there is a extra } after $color = "#ffff";

 <?php
                $color = "#ffff";
            }
            ?>
于 2013-10-11T05:26:43.617 回答