要求 - 没有这样的文件或目录

时间:2017-10-22 02:51:12

标签: javascript php html mysql

我如何在我的php中修复函数“require”中的地址。它排除故障和错误说:

警告:require(..)无法打开流:没有这样的文件或目录。 the error i get on the browser.

this is my folder structure  文件“db_connection.php”完全正常 - 它有“app_config.php” - >需要但当我需要“register_user.php”中的“db_connect.php”时,我得到所有这些错误并且地址匹配..

this is the file tree

register_user.php file contents.

注册用户php文件包含

要求“../../../ app_configuration / db_connect / db_connection.php”;

db_connection的内容是

要求“../../app_configurations/definitions/app_config.php”;

db_connection.php

1 个答案:

答案 0 :(得分:1)

请勿使用../../语句。

改为使用include $_SERVER['DOCUMENT_ROOT'].'/assets/app_configuration/db_connection/db_connection.php'