0

我有一组包含在许多其他文件中的基本文件。这使我在进行更改时不必更新大量文件。问题是,在 CPanel 我的目录结构是:

基地:domain/public_html/base_data 子域:domain/public_html/subdomain

这意味着我可以返回一个目录并包含该文件。现在我已经搬到 Plesk,它是这样的:

基地:domain/httpdocs/base_data 子域:domain/subdomains/subdomain/httpdocs/

../../当我从当前的子域进入 base_data 域时,这个问题不包括我的工作。

任何人有任何想法如何解决这个问题?

编辑:刚刚打开错误报告并得到了这个open_basedir restriction in effect. File(/var/www/vhosts/domain.com/httpdocs/base_data/index.php) is not within the allowed path(s): (/var/www/vhosts/domain.com/subdomains/rip/httpdocs:/tmp) in /var/www/vhosts/domain.com/subdomains/rip/httpdocs/index.php on line 14

4

2 回答 2

0

是的,使用绝对路径。

你可以做一个$yourLibPath = 'domain/httpdocs/base_data/';

然后使用这个 var 包含你所有的库:

include($yourLibPath.'time.lib.php');
于 2011-06-05T12:07:27.223 回答
0

设法通过覆盖 vhost.conf 文件中的 open_basedir 路径来解决这个问题。

于 2011-06-05T13:53:49.250 回答