我的远程服务器出错:
"Warning: include_once(../_includes/check_login_status.php) [function.include-once]: failed to open stream: No such file or directory in /home/content/60/10824160/html/index.php on line 1"
嘿伙计们,我正试图解决所有这些目录错误。基本上,我将整个网站文件夹移动到另一台计算机,现在我的php包含函数正在尝试查找此计算机上不存在的"/home/content/60/10824160/html/index.php"
。
我的index.php
位于Desktop/www/
,我的check_login_status
位于Desktop/www/_includes/
我尝试使用php缓存功能但不明白。我需要做什么?
答案 0 :(得分:0)
删除或更正您的include_once
- 这是唯一的解决方案。
答案 1 :(得分:0)
试试这个
include_once($_SERVER["DOCUMENT_ROOT"]."/_includes/check_login_status.php");
还要确保您的文件/目录名称正确无误。