北京理工大学毕业设计(论文)论文题目: 多用户博客系统设计与实现 专 业: 计算机科学与技术 学生姓名: 侯青龙 指导老师: 刘万春 摘要多用户博客系统是一个以文章形式来发布自己所见、所得、所闻、体会等的互联网信息发布系统,类似个人网站,但它更强内容的私有性,用户有权力不公开自己的文章。本文以博客日志发布管理为基础,并结合其实际需求,详细简述了多用户博客系统设计、开发的全过程。本系统主要功能包括博客的日志发布、分类和评论等。除了这些基本功能外,还有博客风格更改、模块设置和页面布局更改等个性化功能。开发过程中,采纳了 MVC 分层思想,设计了专门的缓存策略,运用了当今比较流行的 Web 前端开发技术Ajax、Javascript 等.本系统基于 B/S 架构,采纳 PHP 为开发语言、MySQL 为数据库的LAMP 开发平台,结合功能强大的开源框架 ZendFramework 为开发框架,从而保证了整个系统稳定、快速、高效的运行。关键词:博客,Web2.0,LAMP,缓存,个性化,稳定性AbstractMulti-user blog system is one of the aritlce form to publish their own findings obtained, the smell, experience and other Internet information release system。similar to the personal website, but it's more private nature of the content, the user has the power to not open their own articles.Key words:Blog, Web2.0, LAMP, cache, personalization, stable目录前言 第 1 章 系统技术方案 1.1 方案分析 1.2 开发工具 1.2.1 关于 PHP 1.2.2 关于 MySQL 1.2.3 关于 Apache 1.2.4 关于 ZendFramework 1.2.5 关于 JavaScript 1.2.6 关于 Ajax 1.2.7 关于 MVC 第 2 章 可行性分析 2.1 市场分析 2.2 经济分析 2.3 技术分析 第 3 章 需求分析 3.1 性能要求 3.2 运行环境要求 3.2.1 硬件环境 3.2.2 软件环境 3.3 功能分析 3.3.1 系统概述 3.3.2 基本功能要求 3.3.3 用户分析 3.3.4 功能详细说明 第 4 章 总体设计 4.1 功能模块划分 4.2 数据库设计 4.2.1 users 用户表 4.2.2 spaces 空间信息表 4.2.3 blogs 日志表 4.2.5 categoryies 系统分类表 4.2.6 itemtypes 用户自定义分类表 4.2.7 mods 模块表 4.2.8 modsettings 模块设置表 4.2.9 ipban 禁止 ip 表 4.2.11 t...