0

我已经下载了 phplist-2.10.19 并安装在我的服务器上。完成所有配置设置后。它在主要网址上运行良好。

喜欢:http ://www.xxxxxxxxx.com/phplist/public_html/lists/

但是,当我尝试将此罚款包含在另一个文件中时,它会向我显示以下错误:

错误,找不到配置文件

以下是该文件的代码。

<html>
<title>Test</title>
<head>
</head>
<body>
<?php include_once('../phplist/public_html/lists/index.php');?>
</body></html>

为什么会这样?

4

1 回答 1

-1

你可以试试这个代码。

<html>
<title>Test</title>
<head>
</head>
<body>
<?php include_once('phplist/public_html/lists/index.php');?>
</body></html>
于 2013-12-19T06:32:40.193 回答