安装JForum的过程中遇到的问题 ( by quqi99 )
作者:张华 发表于:2007-05-24 ( http://blog.csdn.net/quqi99 )
版权声明:可以任意转载,转载时请务必以超链接形式标明文章原始出处和作者信息及本版权声明。
在安装JForum的过程中,并不是顺利。出现下面错误:
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>