找到下面一行在后面加上index.php , 这表示网站的默认页也能够为index.php
DirectoryIndex index.HTML index.html.var index.php
在行AddDefaultCharset ISO-8859-1下加入:
AddDefaultCharset GB2312
并注释掉AddDefaultCharset ISO-8859-1
四、编译PHP
#./configure --prefix=/usr/local/php --with-mysql=/usr/local/mysql --with-apxs2=/usr/local/httpd/bin/apxs --enable-track-vars
--enable-force-cgi-redirect --with-config-file-path=/usr/local/php/etc;make;make install
vi /usr/local/httpd/htdocs/index.php
写入: phpinfo(); ?>
#chmod 755 index.php
#apachectl start
然后在IE中输入ip,测试一下是否成功了 。
五、安装Discuz论坛
将下载下来的包中的Discuz!目录下的文件考到APACHE的网页根目录
在mysql中创建一个数据库bbs:
mysql>create database bbs;
重启一下APACHE:
#apachectl restart
在IE地址栏输入:http://ip/install.php
按提示操作:
# chmod 707 config.php
# chmod 777 ./tem*
# chmod 777 ./for*
# chmod 777 ./foru*/templ*
# chmod 777 ./foru*/cache
接下来自己看提示操作就OK了 。
最后删除网页根目录下的install.php
这是我的第一个准原创吧(参考了一下DX们的贴子 , 然后总结出来的) , 大家鼓励一下吧!:)