Coder Social home page Coder Social logo

jiix / xiunobbs Goto Github PK

View Code? Open in Web Editor NEW
0.0 2.0 0.0 1.37 MB

Xiuno BBS 是一款国产、小巧、稳定、支持在大数据量下仍然保持高负载能力的轻型论坛。采用 MIT 协议发布,您可以自由修改、派生版本、商用而不用担心任何法律风险。本版本仅在4.0.4原始版本基础上,修复PHP兼容性等问题。

Home Page: http://jiih.com

License: Other

PHP 59.73% CSS 0.01% HTML 9.17% JavaScript 31.10%
bbs forum php8 community discussion

xiunobbs's Introduction

介绍

Xiuno BBS 是一款国产、小巧、稳定、支持多语言、支持在大数据量下仍然保持高负载能力的轻型论坛。采用 MIT 协议发布,您可以自由修改、派生版本、商用而不用担心任何法律风险。本版本仅在4.0.4原始版本基础上,修复PHP兼容性等问题。

截屏

image

如何安装 Xiuno BBS 4.0 ?

  1. 下载本项目zip包,上传所有文件到你的网站根目录。
  2. 访问 https://www.domain.com/install/, 根据提示安装。
  3. 安装完成后,一定要删除 install 目录

伪静态

编辑conf/conf.php,把url_rewrite_on值改为1,添加对应的伪静态规则。

Apache、LiteSpeed 伪静态:
<IfModule mod_rewrite.c>
RewriteEngine on

# Apache 2.4
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteRule ^(.*?)([^/]*)$ $1index.php?$2 [QSA,PT,L]

# Apache other
#RewriteRule ^(.*?)([^/]*)\.htm(.*)$ $1/index.php?$2.htm$3 [L]
</IfModule>
Nginx伪静态:
location ~* \.(htm)$ {

    rewrite "^(.*)/(.+?).htm(.*?)$" $1/index.php?$2.htm$3 last;

}
Caddy伪静态(Caddyfile演示):
www.yourdomain.com {

# Set this path to your site's directory.
root * /var/www

file_server

# Or serve a PHP site through php-fpm:
php_fastcgi localhost:9000
}

插件和主题,直接上传到plugin目录中,后台插件中心开启。

安装插件后若出现问题,请先清理缓存(后台 - 其他 - 清理缓存)。

其它说明

本项目尽可能保持原始,仅对部分bug修复。 目前支持的PHP版本为PHP 7.4、PHP 8.1、PHP 8.2、PHP 8.3。 如果您运行的Xiuno BBS 4.0.4需要支持更高版本PHP,可以参考本项目提交记录,对部分文件进行替换。 注意:可能会有部分插件不兼容新PHP版本。

xiunobbs's People

Contributors

jiix avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.