2 Star 2 Fork 0

Jonathan / message forum

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
README.en.md 8.04 KB
一键复制 编辑 原始数据 按行查看 历史
立群 提交于 2023-08-30 03:38 . update README.en.md.

搭建步骤 0 源码 https://github.com/xw2423/kbs_bbs https://github.com/xw2423/nForum smarty-2.6.31.tar.gz yaf-yaf-2.3.2.tar.gz

1 虚机(virtualbox 5.1+, 比如5.1.26)环境搭建 如果没有开启vt,需要开启,首先开机进入BIOS,Security,Virtualization,选择Enable即可 安装ubuntu12.04.5,地址 : http://mirrors.163.com/ubuntu-releases/12.04/ubuntu-12.04.5-desktop-amd64.iso 比较古老的32位的或不支持vt技术的cpu选择: http://mirrors.163.com/ubuntu-releases/12.04/ubuntu-12.04.5-desktop-i386.iso

虚机网络断开安装,否则会自动安装更新,耗时比较久, virtualbox - 显示 - 启用3d加速 安装过程中,配置用户名设置为 bbs

安装完成后去掉iso挂载,网络选择网络地址转换NAT,重启后 添加root密码,sudo passwd root,(可以修改,后面的涉及密码输入都同步修改) beautiful beautiful

virtuabbox, 设备-安装增强功能(和主机共享文件) df 查看光盘挂载地址 cd /media/VBOXADDITIONS_5.1_xxxx (xxxx为上面命令结果补全) sudo ./VBoxLinuxAdditions.run

重启,设备 - 共享文件夹, 选择windows主机的文件夹映射为 bbs目录为共享目录,选择固定分配,自动挂载 sudo mount -t vboxsf bbs /mnt

添加国内源 sudo vi /etc/apt/sources.list

删除文本所有内容,添加:

默认注释了源码镜像以提高 apt update 速度,如有需要可自行取消注释

deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ precise main restricted universe multiverse

deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ precise main restricted universe multiverse

deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ precise-updates main restricted universe multiverse

deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ precise-updates main restricted universe multiverse

deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ precise-backports main restricted universe multiverse

deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ precise-backports main restricted universe multiverse

deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ precise-security main restricted universe multiverse

deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ precise-security main restricted universe multiverse

sudo vim /var/lib/locales/supported.d/local
加入 zh_CN.GBK GBK
zh_CN.GB2312 GB2312
zh_CN.GB18030 GB18030

执行sudo dpkg-reconfigure locales

修改一下vim打开文件的编码方式,否则后续编辑有可能显示乱码 vim ~/.vimrc set fileencodings=utf-8,ucs-bom,gb18030,gbk,gb2312,cp936 #set termencoding=utf-8
set encoding=gbk expandtab set ts=4 set sw=4

vi ~/.bashrc export LANG="zh_CN.GBK" export LANGUAGE="zh_CN.GBK" export LC_ALL="zh_CN.GBK"

terminal 终端 - 设置字符编码 - 添加gbk

2 安装 sudo ./php.sh 安装的 php, nginx, mysql 等依赖库 php.sh 的内容:

apt-get update &&
apt-get install -y zlib1g-dev &&
apt-get install -y autoconf &&
apt-get install -y automake &&
apt-get install -y libtool &&
apt-get install -y libgmp3c2 &&
apt-get install -y libgmp3-dev &&
apt-get install -y openssl &&
apt-get install -y nginx-full &&
apt-get install -y php5-dev &&
apt-get install -y php5-gd &&
apt-get install -y php5-xdebug &&
apt-get install -y php5-fpm &&
apt-get install -y python-pip &&
apt-get install -y bison &&
apt-get install -y byacc &&
apt-get install -y g++ &&
apt-get install -y tree &&
apt-get install -y dos2unix &&
apt-get install -y vim &&
apt-get install -y git &&
apt-get install -y mercurial &&
apt-get install -y tree &&
apt-get install -y feh &&
apt-get install -y ctags &&
apt-get install -y libxml2-dev &&
apt-get install -y libxslt-dev &&
apt-get install -y python-dev &&
apt-get install -y libpcre3 &&
apt-get install -y libpcre3-dev &&
apt-get install -y php5-mysql &&
apt-get install -y sendmail &&
apt-get install -y libesmtp-dev &&
apt-get install -y libcurl4-openssl-dev &&
apt-get install -y php-pear &&
apt-get install -y sqlite3 &&
apt-get install -y libatomic-ops-dev &&
apt-get install -y libsqlite3-dev &&
apt-get install -y openssh-server &&
apt-get install -y mysql-client &&
apt-get install -y mysql-server &&
apt-get install -y libmysqlclient-dev

安装过程提示输入mysql密码,设置的是beautiful,如设置别的密码,后续使用mysql相应修改

tar zxf libatomic_ops-7.6.10.tar.gz cd libatomic_ops-7.6.10 ./autogen.sh ./configure --prefix=/usr make sudo make install

3 安装kbs 解压kbs到/home/bbs/src目录 ./autogen.sh ./configure --prefix=/home/bbs --enable-site=fb2k-v2 --with-php --with-mysql --with-libatomic=/usr --with-libesmtp

site.h中加入以下nForum支持的KBS宏定义

#define NFORUM 1 #define ENABLE_REFER 1 #define RECORDMAXONLINE #define TITLEKEYWORD #define MAXTITLEKEY 18 #define MAXBOARDTITLEKEY 10

vi /etc/passwd, 找bbs的userid, grpid, 我这里是1000,1000, 更新到 site/fb2k-v2.h 的 BBSUID, BBSGID

修改php模块待安装目录的权限 sudo chown bbs:bbs /usr/lib/php5 -R

make make install make install-home

初始化版面 ./bin/bootstrap 创建初始化版面,此时需要根据提示输入字符 Go ahead!,根据提示输入SYSOP密码

nginx, php5配置: tar xf etc.nginx.tar -C /etc tar xf etc.php5.tar -C /etc

4 安装nForum相关依赖的软件

安装yaf 解压/home/bbs/src phpize ./configure --with-php-config=/usr/bin/php-config make make install

#这个不需要执行,上面已经解压覆盖了 sudo vim /etc/php5/fpm/php.ini ,文件结尾加入

[yaf]

extension=yaf.so extension=libphpbbslib.so

安装smarty 解压到/home/bbs/src

#这个不需要执行,上面已经解压覆盖了 sudo vim /etc/php5/fpm/php.ini 加入 include_path = ".:/usr/share/php:/home/bbs/src/smarty-2.6.31/libs"

检测php加载模块 php -m | grep kbs_bbs php -m | grep gd php -m | grep PDO php -m | grep pdo-mysql php -m | grep mysql php -m | grep mysqli php -m | grep exif

5 编译配置 nForum

数据库创建导入

mysql -u root -p'beautiful' create database mydb; quit

cd /home/bbs/src/nForum-2.0 mysql -u root -p'beautiful' mydb < app/modules/Api/pl_api.sql mysql -u root -p'beautiful' mydb < sql/common.sql mysql -u root -p'beautiful' mydb < sql/pl_vote.sql

添加用户bbs,授权普通用户,bbs密码设置为 beautiful 也可以改成其他的 (bbs用户,root用户密码都是 beautiful,可以改成其他的)

mysql -u root -p'beautiful'

insert into mysql.user(host,user) values('localhost','bbs'); update mysql.user set authentication_string=password('beautiful') where user='bbs'; grant all privileges on mydb.* to bbs; flush privileges; quit

检测: mysql -ubbs -p'beautiful' show databases; use mydb; show tables; describe adv; quit

修改nforum配置: cp /home/bbs/src/nForum-2.0/conf/nforum.example.php /home/bbs/src/nForum-2.0/conf/nforum.php

vi /home/bbs/src/nForum-2.0/conf/nforum.php 数据库相关配置: $export['db']['user'] = 'bbs'; $export['db']['pwd'] = 'beautiful'; $export['db']['db'] = 'mydb';

移动端访问的域名: $export['modules']['mobile']['domain'] = 'm.test.info'

编译安装nForum cd ~/src/nForum-2.0 bin/cli install bin/cli buildasset

执行 ~/start.sh, firefox 127.0.0.1 验证 SYSOP 登录成功 start.sh的内容:

#/bin/bash ./bin/miscd daemon ./bin/bbslogd echo -e 'beautiful' | sudo -S ./bin/bbsd -p 23 echo -e 'beautiful' | sudo -S sudo service php5-fpm restart echo -e 'beautiful' | sudo -S service nginx restart

测试 telne测试: luit -encoding gbk telnet 127.0.0.1

www测试: sudo vi /etc/hosts 添加

127.0.0.1 test.info 127.0.0.1 m.test.info

ubuntu内使用firefox访问 m.test.info, test.info

windows端www测试: virtualbox网络改为hostonly,查看ubuntu地址 ifconfig | grep inet, 比如地址为 192.168.56.101 修改windows的host文件(C:\Windows\System32\drivers\etc)添加 192.168.56.101 test.info 192.168.56.101 m.test.info 浏览器访问 test.info或m.test.info virtualbox配置端口转发,可以移动端访问 virtualbox虚拟机配置 - 网络 - 选择网络地址转换NAT - 勾选端口映射 - 配置主机端口 10086,子系统端口 80,其他为空 使用手机访问 主机ip:10086, 即可访问

C
1
https://gitee.com/JonathanLivingston/message-forum.git
git@gitee.com:JonathanLivingston/message-forum.git
JonathanLivingston
message-forum
message forum
master

搜索帮助