-1

大家好,本地主机中的每一个人都非常完美,但是我从来没有将文件上传到我的 Cpanel syas 中:

Warning: require_once(/public_html/spdealers/Admin Panel/config.php) [function.require-once]: failed to open stream: No such file or directory in /home/scalesgc/public_html/spdealers/Admin Panel/ProDisPds/func.php on line 2

Fatal error: require_once() [function.require]: Failed opening required '/public_html/spdealers/Admin Panel/config.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/scalesgc/public_html/spdealers/Admin Panel/ProDisPds/func.php on line 2

文件名和路径正确

4

2 回答 2

2

您可以通过两种方式定义路径:相对路径或绝对路径。

An absolute path refers to a file on the Internet using its full URL while 
relative path assumes that the file is on the current server

有关相对路径和绝对路径的更多信息,您可以参考此链接

当前目录:

/home/scalesgc/public_html/spdealers/Admin Panel/ProDisPds/

所以在这种情况下,你的路径应该是:

要么给出绝对路径:

require_once("/home/scalesgc/public_html/spdealers/Admin Panel/config.php");

或者使用相对路径:

require_once("../config.php");

希望,它会解决你的问题。

于 2013-05-09T08:27:18.173 回答
1

与你所说的相反,这里的 PATH 是错误的

当前路径是这个

/home/scalesgc/public_html/spdealers/Admin Panel/ProDisPds/

而你require正在

/public_html/spdealers/Admin Panel/config.php

从该参考资料来看这是不正确的。

尝试

require_once("/home/scalesgc/public_html/spdealers/Admin Panel/config.php");
于 2013-05-09T08:18:39.157 回答