利用 PHP 语言, CodeIgniter 框架, MySQL 数据库搭建简单的 Forum ,仅供学习之用。
演示地址:Demo
功能简介
安装方法
获取代码
git clone https://github.com/luckybirdme/CodeIgniter-learn-forum.git
安装数据库
mysql -uroot -p
source codeigniter.sql
文件配置
修改 application/config/database.php
$db['default'] = array(
.................
// 根据自己环境修改
'hostname' => 'localhost',
'username' => 'root',
'password' => '123456',
'database' => 'codeigniter',
'dbdriver' => 'mysqli',
............
);
修改 application/config/config.php
...........
// 根据自己环境修改
$config['base_url'] = 'http://localhost.CodeIgniter';
$config['static_url'] = 'http://localhost.CodeIgniter/public/static';
$config['upload_path'] = FCPATH;
$config['image_url'] = 'http://localhost.CodeIgniter';
............
相关链接
GitHub 地址:CodeIgniter-learn-forum
博客地址 : LuckyBird
备注
如果本项目对你有帮助,不妨点个赞呗!
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.