discuzQ的官网地址:https://discuz.com/docs/ ,这是一个用来做内容变现的社区,还可以跟wx小程序结合,非常方便。跟discuz不是一回事,discuz是论坛。
为了省事,可以直接使用阿里云上的轻量应用服务器,或者云服务器,然后选择LAMP镜像就可以啦。
安装可以参考这里的基于apache的安装方法:基于手动配置的环境#Apache
修改php配置/usr/local/php/etc/php.ini文件,修改其中的一些字段:
extension=exif
exif.encode_unicode = ISO-8859-15
exif.decode_unicode_motorola = UCS-2BE
exif.decode_unicode_intel = UCS-2LE
exif.encode_jis =
exif.decode_jis_motorola = JIS
exif.decode_jis_intel = JIS=
修改apache配置/usr/local/apache/conf/httpd.conf文件,,修改其中的一些字段:
<Directory />
Options All
AllowOverride All
DirectoryIndex index.php index.html
</Directory>
DocumentRoot "/data/wwwroot/default/discuz/public"
<Directory "/data/wwwroot/default/discuz/public">
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
</Directory>
还有配置文件/usr/local/apache/conf/vhost/0.conf:
DocumentRoot "/data/wwwroot/default/discuz/public"
<Directory "/data/wwwroot/default/discuz/public">
SetOutputFilter DEFLATE
Options FollowSymLinks ExecCGI
Require all granted
AllowOverride All
#Order allow,deny 这个注释掉
Allow from all
DirectoryIndex index.html index.php
</Directory>
重启 PHP 与 Apache 服务:
service php-fpm restart
service httpd restart
安装discusQ:
# 假如网站根目录是/data/wwwroot/default
cd /data/wwwroot/default
mkdir discuz
cd discuz
# 下载
wget -c https://dl.discuz.chat/dzq_latest_install.zip
# 解压
unzip dzq_latest_install.zip
访问 http://<绑定网站的域名名称>/dl.php
即可~
其中如果遇到报错目录没权限,可以chmod一下就可以啦