1 Star 0 Fork 22

cnhans / birdbbs

forked from outman / birdbbs 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README
MIT

#BirdBBS

PHP Simple BBS V2EX(like), based on YII framework 1.1.14.

##Requirements

  • MySQL 5.5
  • PHP 5.3
  • YII Framework1.1.14's requirements

##Install

auto install

  1. git clone project to your system

  2. config your web server , web root dir is birdbbs/www/

  3. type http://www.yourname.com/install.php in browser to install

  4. login to ADMIN panel http://www.yourname.com/index.php?r=admin/default config your system

manually

  1. git clone project to your system

  2. config your web server , web root dir is birdbbs/www/

  3. load all *.sql (birdbbs/www/protected/data/) file to mysql server. (notice table prefix)

  4. make file config.php to dir birdbbs/www/protected/config/config.php

  5. login to ADMIN panel http://www.yourname.com/index.php?r=admin/default config your system

config.php example

$CONF = array();
$CONF['db'] = array(
    'connectionString' => 'mysql:host=127.0.0.1;dbname=birdbbs;port=3306',
    'emulatePrepare' => true,
    'username' => 'root',
    'password' => 'admin',
    'charset' => 'utf8',
    'tablePrefix' => 'bbs_',
    'schemaCachingDuration' => 3600
);
$CONF['params'] = array(
    'adminEmail'=>'xbugs@qq.com',
    'mail' => array(
    'noreply' => 'noreply@buxiangshuo.cn',
    'smtp' => 'smtp.exmail.qq.com',
    'password' => 'test',
));

nginx example

server {
        set $htdocs /Users/outman/Repositories/birdbbs/www;
        listen 80;
        server_name dev.birdbbs.com;
        location / {
            root $htdocs;
            autoindex on;
            index index.php index.html;
    
           if (!-e $request_filename){
                rewrite (.*) /index.php?r=$1;
           }
       }
       location ~ \.php$ {
           include fastcgi_params;
           fastcgi_index index.php;
           fastcgi_pass  127.0.0.1:9000;
           fastcgi_param SCRIPT_FILENAME $htdocs$fastcgi_script_name;
           fastcgi_param PATH_INFO $fastcgi_script_name;
       }
}

##Online demo

http://bbs.buxiangshuo.cn

##Contact Us & Commercial Service

pochonlee@gmail.com

##Github

https://github.com/outman/birdbbs

##GitOschina

http://git.oschina.net/outman/birdbbs

##Screen Snapshot 系统安装 系统前台 系统后台

##License

MIT

The MIT License (MIT) Copyright (c) 2014 outman Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

简介

PHP Simple BBS V2EX(like), based on YII framework 1.1.14 展开 收起
MIT
取消

发行版

暂无发行版

贡献者

全部

近期动态

加载更多
不能加载更多了
1
https://gitee.com/cnhans/birdbbs.git
git@gitee.com:cnhans/birdbbs.git
cnhans
birdbbs
birdbbs
master

搜索帮助