我下载了phplist-2.10.19并安装在我的服务器上。在完成所有配置设置之后。它在主url上运行得很好。
喜欢:html/lists/
但是,当我试图在另一个文件中包含这个罚款时,它会向我显示以下错误:
错误,无法找到配置文件。
以下是该文件的代码。
<html>
<title>Test</title>
<head>
</head>
<body>
<?php include_once('../phplist/public_html/lists/index.php');?>
</body></html>为什么会发生这种事?
发布于 2013-12-19 06:32:40
你可以试试这段代码。
<html>
<title>Test</title>
<head>
</head>
<body>
<?php include_once('phplist/public_html/lists/index.php');?>
</body></html>https://stackoverflow.com/questions/15476344
复制相似问题