当一切看起来很好时链接文件出错

时间:2012-03-18 09:20:27

标签: php html require require-once

我在链接文件时遇到问题。我确信我身边没有任何问题,因为我已经检查了一切。这是我上传的内容(通过FileZilla), enter image description here

website上显示它无法找到此文件。

  

警告:require_once(classes / tc_calendar.php)   [function.require-once]:无法打开流:没有这样的文件或   /home/content/34/8707934/html/RemindMe/demo4.php中的目录在线   52

     

致命错误:require_once()[function.require]:打开失败   必需'classes / tc_calendar.php'   (include_path ='。:/ usr / local / php5_3 / lib / php')in   第52行/home/content/34/8707934/html/RemindMe/demo4.php

现在我已经尝试了我最好的水平,以找到错误的位置,现在我没有想法。请帮帮我。感谢

2 个答案:

答案 0 :(得分:3)

路径似乎有误,我想你忘了一个目录

require_once('calendar/classes/tc_calendar.php');

答案 1 :(得分:1)

此文件: /home/content/34/8707934/html/RemindMe/demo4.php 第52行正在寻找位于类/ / tc_calendar.php

中的文件

您必须将此行更改为正确的路径:

require_once('calendar/classes/tc_calendar.php');