您尚未登录。

楼主 #1 2019-09-25 21:01:27

晕哥
管理员
所在地: 微信 whycan_cn
注册时间: 2017-09-06
已发帖子: 9,233
积分: 9197

很多朋友吐槽这个punbb难用,这两天找了一个国产的 修罗(xiuno) bbs系统, 感觉还行, bootstrap前端, php后端





离线

楼主 #2 2019-09-25 21:08:23

晕哥
管理员
所在地: 微信 whycan_cn
注册时间: 2017-09-06
已发帖子: 9,233
积分: 9197

Re: 很多朋友吐槽这个punbb难用,这两天找了一个国产的 修罗(xiuno) bbs系统, 感觉还行, bootstrap前端, php后端

虚拟网站wakeng.wang 配置文件: /etc/apache2/sites-available/wakeng.wang.conf


<VirtualHost *:80>
        # The ServerName directive sets the request scheme, hostname and port that
        # the server uses to identify itself. This is used when creating
        # redirection URLs. In the context of virtual hosts, the ServerName
        # specifies what hostname must appear in the request's Host: header to
        # match this virtual host. For the default virtual host (this file) this
        # value is not decisive as it is used as a last resort host regardless.
        # However, you must set it for any further virtual host explicitly.
        #ServerName www.example.com
        ServerName wakeng.wang

        ServerAdmin 516333132@qq.com
#       DocumentRoot /opt/wakeng.wang
        DocumentRoot /var/www/xiuno/
#       DocumentRoot /opt/xiuno


        # Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
        # error, crit, alert, emerg.
        # It is also possible to configure the loglevel for particular
        # modules, e.g.
        #LogLevel info ssl:warn

        ErrorLog ${APACHE_LOG_DIR}/error.log
        CustomLog ${APACHE_LOG_DIR}/access.log combined

        # For most configuration files from conf-available/, which are
        # enabled or disabled at a global level, it is possible to
        # include a line for only one particular virtual host. For example the
        # following line enables the CGI configuration for this host only
        # after it has been globally disabled with "a2disconf".
        #Include conf-available/serve-cgi-bin.conf


        #<ifmodule mod_rewrite.c>
        #Options +FollowSymLinks
        #RewriteEngine On

        ###force https
        #RewriteCond %{HTTPS} off
        #RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
        #</ifmodule>


        <Directory /var/www/html/xiuno>
                Options -Indexes +FollowSymLinks
                AllowOverride None
                Require all granted
        </Directory>

        <IfModule mod_rewrite.c>
                RewriteEngine on
                RewriteRule ^(.*?)([^/]*)\.htm(.*)$ $1/index.php?$2.htm$3 [L]
        </IfModule>

</VirtualHost>

使能网站: a2ensite wakeng.wang


下载源码:

cd /var/www/

git clone https://gitee.com/xiuno/xiunobbs.git

然后打开 http://wakeng.wang/ 即可进入系统配置运行.

QQ20190925210731.png





离线

楼主 #3 2019-09-25 21:16:00

晕哥
管理员
所在地: 微信 whycan_cn
注册时间: 2017-09-06
已发帖子: 9,233
积分: 9197

Re: 很多朋友吐槽这个punbb难用,这两天找了一个国产的 修罗(xiuno) bbs系统, 感觉还行, bootstrap前端, php后端

编辑功能还是挺强大的, 可以粘贴剪贴板的图片, 并直接上传到附件.

但是如果剪贴板是从 word 或者 QQ 聊天记录复制的, 粘贴上去是没有图片的.





离线

楼主 #4 2019-09-25 21:18:01

晕哥
管理员
所在地: 微信 whycan_cn
注册时间: 2017-09-06
已发帖子: 9,233
积分: 9197

Re: 很多朋友吐槽这个punbb难用,这两天找了一个国产的 修罗(xiuno) bbs系统, 感觉还行, bootstrap前端, php后端

修罗程序伪静态设置: http://www.zidiu.com/thread-1366-1-1.html

我跑的是 apache,  配置文件修改: /etc/apache2/sites-available/wakeng.wang.conf

<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^(.*?)([^/]*)\.htm(.*)$ $1/index.php?$2.htm$3 [L]
</IfModule>

代码编辑 conf/conf.php:

1. 编辑 'url_rewrite_on'=>1,
2. 清空 tmp 目录





离线

#5 2019-09-25 22:18:49

aozima
会员
所在地: 深圳
注册时间: 2019-05-25
已发帖子: 449
积分: 316.5
个人网站

Re: 很多朋友吐槽这个punbb难用,这两天找了一个国产的 修罗(xiuno) bbs系统, 感觉还行, bootstrap前端, php后端

说实话,感觉这个很好用啊,简单但不简陋,与本站内容非常匹配有特色。

离线

楼主 #6 2019-09-25 22:35:53

晕哥
管理员
所在地: 微信 whycan_cn
注册时间: 2017-09-06
已发帖子: 9,233
积分: 9197

Re: 很多朋友吐槽这个punbb难用,这两天找了一个国产的 修罗(xiuno) bbs系统, 感觉还行, bootstrap前端, php后端

aozima 说:

说实话,感觉这个很好用啊,简单但不简陋,与本站内容非常匹配有特色。


修罗xiuno 架构还挺不错, 插件丰富.

想把 伪静态弄成 和这个一样的格式, 没有搞定.

http://wakeng.wang/thread-3.htm

===>

http://wakeng.wang/t_3.htm





离线

#7 2019-09-25 22:45:37

aozima
会员
所在地: 深圳
注册时间: 2019-05-25
已发帖子: 449
积分: 316.5
个人网站

Re: 很多朋友吐槽这个punbb难用,这两天找了一个国产的 修罗(xiuno) bbs系统, 感觉还行, bootstrap前端, php后端

我是说当前的  punbb

离线

楼主 #8 2019-09-25 22:49:34

晕哥
管理员
所在地: 微信 whycan_cn
注册时间: 2017-09-06
已发帖子: 9,233
积分: 9197

Re: 很多朋友吐槽这个punbb难用,这两天找了一个国产的 修罗(xiuno) bbs系统, 感觉还行, bootstrap前端, php后端

aozima 说:

我是说当前的  punbb

缺很多功能,手机浏览器也没有适配。





离线

#9 2019-09-25 23:30:30

jiangming1399
会员
注册时间: 2018-06-14
已发帖子: 113
积分: 113

Re: 很多朋友吐槽这个punbb难用,这两天找了一个国产的 修罗(xiuno) bbs系统, 感觉还行, bootstrap前端, php后端

居然没有在github上面放,感觉有点……不太可信?

我知道的几个论坛系统可以推荐一下:
https://github.com/flarum/flarum
https://nodebb.org/

flarum是用PHP写的,Nodebb是用nodejs写的。widora和坑智的论坛都是用的nodebb

离线

楼主 #10 2019-09-26 08:21:33

晕哥
管理员
所在地: 微信 whycan_cn
注册时间: 2017-09-06
已发帖子: 9,233
积分: 9197

Re: 很多朋友吐槽这个punbb难用,这两天找了一个国产的 修罗(xiuno) bbs系统, 感觉还行, bootstrap前端, php后端

@jiangming1399 谢谢推荐, 我去围观围观。





离线

页脚

工信部备案:粤ICP备20025096号 Powered by FluxBB

感谢为中文互联网持续输出优质内容的各位老铁们。 QQ: 516333132, 微信(wechat): whycan_cn (哇酷网/挖坑网/填坑网) service@whycan.cn