• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

birdbbs: # Deprecated PHP Simple BBS V2EX(like), based on YII framework 1.1.14

原作者: [db:作者] 来自: 网络 收藏 邀请

开源软件名称:

birdbbs

开源软件地址:

https://gitee.com/outman/birdbbs

开源软件介绍:

#BirdBBS

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

##Requirements

  • MySQL 5.5
  • PHP 5.3 (with fileinfo module default)
  • 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'=>'[email protected]',    'mail' => array(      'noreply' => '[email protected]',      'smtp' => 'smtp.exmail.qq.com',      'password' => 'test',    ),    // third part login bind    // sina weibo.com, remove comment    // 'sina' => array(    //    'appKey' => 'xxxxxxx',    //    'appSecrectKey' => 'xxxxxxxxxxxxxxxxxxxxxxxxxxxx',    //    'callbackUrl' => 'http://yourhoust.com/index.php?r=callback/sina',    //),);

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

[email protected]

##Github

https://github.com/outman/birdbbs

##GitOschina

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

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

##License

MIT


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap