没有这样的文件目录?

时间:2014-01-14 03:57:40

标签: directory connection root document-root

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

我正在使用此.inc文件将我的php页面链接到MySQL但是我的浏览器将以下消息显示为:

 Warning: require_once(../FinalApplicationDWP/Public_html/dbstuff.inc): failed to open stream: No such file or directory in /home/cs12jkk/public_html/functions.inc on line 6

Fatal error: require_once(): Failed opening required '../FinalApplicationDWP/Public_html/dbstuff.inc' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/cs12jkk/public_html/functions.inc on line 6

我的遗嘱保存在桌面上的文件中FinalApplicationDWP&gt; public_html&gt;那么所有的文件

<?php

require_once ("..dbstuff.inc");
require_once ("validation.inc");

?>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Untitled Document</title>
</head>

<body>
</body>
</html>

2 个答案:

答案 0 :(得分:1)

找不到require_once行中的文件。

首先尝试:

require_once ("../dbstuff.inc");

注意额外/

除此之外,检查文件路径,确保它们位于正确的位置。

答案 1 :(得分:0)

尝试将您的代码更改为::

<?php

require_once("file:///jordanking48$/Users/jordanking48/Desktop/FinalApplicationDWP/public_html/dbstuff.inc");
require_once ("validation.inc");

?>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Untitled Document</title>
</head>

<body>
</body>
</html>

并确保为将<"..dbstuff.inc">更改为<"../dbstuff.inc">

的文件提供正确的路径