我的网页大部分时间都可以正常工作。它被称为myschedule.php
它包括一堆其他 PHP 文件,除了一个之外,所有这些文件都可以工作content_dashboard.php
,我已将错误范围缩小到此代码中的某个位置:
echo '
<!--Student Dashboard-->
<div class="featuredcontent">
<div id="titlebar">Dashboard</div>
<div id="titlebarminimize" onclick="studentdashboardtoggle();">_</div>
<div id="titlebarclose" onclick="studentdashboardclose();">X</div>
</div>
<div id="studentstudentdashboard">
<ul>
<li><a href="http://mail.google.com/"><img src="studentdashboard/gmail.png"> Prep Mail</a></li>
<li><a href="https://sites.google.com/a/thecollegepreparatoryschool.org/student-dashboard/home"><img src="studentdashboard/studentdashboard.png"> Student Dashboard</a></li>
</ul></div>
<hr style="color:#85B3FF;">
<div id="homeworklog"></div>
</div>';
一切看起来都很好,JS 函数正确,链接有效,图像来源正确,语法看起来不错。
我在第一次之后注释掉了所有内容<ul>
并且一切正常,但是如果我让 PHP 文件在此之后回显任何内容,则网页会将我重定向到 403 错误页面。
任何指向正确方向的指针都会非常有帮助。
另外-我的托管服务提供商是AwardSpace.com,我有一个免费的托管帐户,尽管我认为这无关紧要...