一、环境需求
php 5.2x + MySQL 5.1x + end Guard Loader 5.5.0或Zend Optimizer 3.3以上。
服务器以linux为佳，windows也可以使用，但将无法监控采集。
我们推荐使用VPS或者独立服务器，虚拟空间由于诸多限制，不在我们的支持之列。

二、安装步骤
 1、首先将所有代码上传到服务器上，注意，如果是ftp传的话，需要以二进制的形式传。
 2、确保/cache  /data  两个目录可读写。
 3、确保/cache/Settings.inc.php  /cache/Db.conf.php 可写。
 4、在浏览器里访问 http://你的域名/install，按照步骤完成即可。
 5、安装完以后请务必将 install 目录删除，避免不必要免得漏洞。
 6、将根目录下的 admin 和  backend 两个目录改名，最好改成生僻点的，别人猜不到的。
 7、通过http://你的域名/backend(弱改名则用改名后的)/index.php?r=admin，登录系统进行设置。
 
三、地址重写
如果需要使用WEB版，需要设置相应的设置，如果是nginx的话在相应的地方写入：
if (!-e $request_filename)
{
	rewrite ^/$ /index.php last;
	rewrite ^/book/([0-9]+)\.html$ /bookshow.php?bid=$1 last;
	rewrite ^/chapter/([0-9]+)\.html$ /chapter.php?bid=$1 last;
	rewrite "^/read/([0-9a-zA-Z]){1}/([0-9]+)/([0-9]+)\.html$" /read.php?bid=$2&cid=$3 last;
	rewrite ^/new\.html$ /new.php last;
	rewrite ^/new-(\d+)\.html$ /new.php?page=$1 last;
	rewrite ^/type-(\d+)\.html$ /booktype.php?tid=$1 last;
	rewrite ^/type-(\d+)-(\d+)\.html$ /booktype.php?tid=$1&page=$2 last;
}

apache类似。