当一切看起来很好时链接文件出错
I am having a problem in linking the file. I am sure that I have no problem from my side as I have checked everything from my side. Here is what I have uploaded(via FileZilla),
While on the website it displays that it can not find this file.
Warning: require_once(classes/tc_calendar.php) [function.require-once]: failed to open stream: No such file or directory in /home/content/34/8707934/html/RemindMe/demo4.php on line 52
Fatal error: require_once() [function.require]: Failed opening required 'classes/tc_calendar.php' (include_path='.:/usr/local/php5_3/lib/php') in /home/content/34/8707934/html/RemindMe/demo4.php on line 52
Now I have tried my level best to find where the bug is and now I am out of ideas. Please help me out. Thanks
我在链接文件时遇到问题。 我确信我身边没有任何问题,因为我已经检查了一切。 这是我上传的内容(通过FileZilla),
p>
\ n
在网站上显示无法找到此文件。 p>
警告:require_once(classes / tc_calendar.php) [function.require-once]:无法打开流:/中没有这样的文件或 目录 home / content / 34/8707934 / html / RemindMe / demo4.php在线 52 p>
致命错误:require_once()[function.require]:无法打开 所需的'类 第52行 /home/content/34/8707934/html/RemindMe/demo4.php中的/tc_calendar.php' (include_path ='。:/ usr / local / php5_3 / lib / php') p > blockquote>
现在我已经尝试了我的最佳水平,以找到错误的位置,现在我没有想法。 请帮帮我。 谢谢 p> div>
The path seems to be wrong, I think you forgot a directory
require_once('calendar/classes/tc_calendar.php');
This file: /home/content/34/8707934/html/RemindMe/demo4.php On line 52 is looking for file located inside classes/ called tc_calendar.php
You have to change this line to the correct path:
require_once('calendar/classes/tc_calendar.php');