CarbonBBS - Carbon-Forum-5.9.0轻论坛程序源码下载

Carbon Forum 是一款值得推荐的程序,如果,你想搭建一个轻论坛,那么,这款Carbon-Forum轻论坛程序,超缓存,性能好,打开快,加载快,安全性高,框架优秀,全站使用AJAX异步加载技术,放弃版块节点,还支持关注用户、关注话题等功能,阔以说是非常的合适做轻论坛。

Carbon-Forum官网

Source Code
  1. https://www.94cb.com/

这个官网用的就是这个程序,数据好像是已经达到三百万级了,除了首次加载首页慢点以外,其它的页面可以说是秒加载的。

源码下载

该部分是下载区

CarbonBBS - Carbon-Forum-5.9.0轻论坛程序源码下载 - 全民博客

本地下载

环境推荐

Nginx/Apache PHP版本需PHP5.6+ MySQL5.7+

Nginx伪静态规则

Source Code
  1. location / {
  2. try_files $uri $uri/ /index.php?$query_string;
  3. }
  4. location /.git {
  5. deny all;
  6. return 403;
  7. }
  8. location /controller {
  9. deny all;
  10. return 403;
  11. }
  12. location /docker_resources {
  13. deny all;
  14. return 403;
  15. }
  16. location /library {
  17. deny all;
  18. return 403;
  19. }
  20. location /service {
  21. deny all;
  22. return 403;
  23. }
  24. location /view {
  25. deny all;
  26. return 403;
  27. }
  28. location ~ /\.ht {
  29. deny all;
  30. return 403;
  31. }

Apache伪静态规则

Source Code
  1. <IfModule mod_rewrite.c>
  2. #强制重定向到带www的顶级域名
  3. RewriteEngine On
  4. RewriteCond %{REQUEST_METHOD} ^TRACE
  5. RewriteRule .* - [F]
  6.  
  7. RewriteBase /
  8. RewriteRule ^.git - [F,L]
  9. RewriteRule ^controller - [F,L]
  10. RewriteRule ^docker_resources - [F,L]
  11. RewriteRule ^library - [F,L]
  12. RewriteRule ^service - [F,L]
  13. RewriteRule ^view - [F,L]
  14.  
  15. # Redirect Trailing Slashes If Not A Folder...
  16. RewriteCond %{REQUEST_FILENAME} !-d
  17. RewriteRule ^(.*)/$ /$1 [L,R=301]
  18.  
  19. # Handle Front Controller...
  20. RewriteCond %{REQUEST_FILENAME} !-d
  21. RewriteCond %{REQUEST_FILENAME} !-f
  22. RewriteRule ^ index.php [L]
  23. </IfModule>
  24. <IfModule mod_expires.c>
  25. # enable expirations
  26. ExpiresActive On
  27. ExpiresByType text/javascript A604800
  28. ExpiresByType application/x-javascript A604800
  29. ExpiresByType text/css A604800
  30. ExpiresByType application/x-shockwave-flash A2592000
  31. ExpiresByType image/png A2592000
  32. ExpiresByType image/gif A2592000
  33. ExpiresByType image/jpeg A2592000
  34. ExpiresByType image/x-icon A2592000
  35. </IfModule>

重装教程

删除根目录的 config.php 文件

删除 install 目录下的 install.lock 文件

然后运行域名重装就行了。

凡事都有例外,比如浏览器缓存之类的,如果不行就打开下面地址安装。

Source Code
  1. http://你的域名/install/

这样就能重新安装了。

特别注意:如果重装的话,需要新建数据库,不能使用原来的数据安装了,不然重新安装不成功的哦。

亲测好用

亲测确实不错,强大的缓存和全站Ajax加载,编辑器支持文本自动加载保存,自改百度编辑器也特别好用,真的是一款很值得使用的程序,除了评论无盖楼回复以外,真的是找不出其它槽点了。和市面上的其它轻论坛程序相比,这个程序要比其它程序要好用很多。

本文结束

评论专区

发表评论

评论列表(无评论)