JForum 初体会

下载了一个 jforum 2.1.7 beta3

它的web 向导配置数据库方式还挺有趣的,像安装 php 论坛程序。

安装时遇到点问题:

Please give write access for the user who is running the webserver
to the file 'index.htm' and for the directory 'WEB-INF/config' and its
subdirectories before continuing.

说是文件没有写权限,去掉只读属性仍然不行。

在网上查道一个不知所云的解决方法

在JForum的安装目录下增加了一个名为 __index.redirect 的文件,文件内容如下:


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
"http://www.w3.org/TR/2002/REC-xhtml1-20020801/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>JForum </title>
</head>
<body>
<script type="text/javascript">
document.location = "forums/list.page";
</script>
</body>
</html>



神奇的是竟然管用    

你可能感兴趣的:(PHP,Web,XHTML,Access,idea)