linkk.zip

程序使用及安装说明

安装说明
将压缩包解压到空间的根目录下后
修改./home/Conf/config.php
访问./index.php?m=Install //导入数据
访问./index.php?m=Admin //进行配置
配置完成后测试一下,然后修改./index.php中的DEBUG的值为true
完成
后台帐号:admin 密码:admin

验证码无法显示
修改生成验证码方法:
修改文件:./home/Lib/Action/Public.class.php
增加以下代码,注意不要用文本文档编辑。如果已改则覆盖所需文件

          ob_end_clean();

修改完整后的代码:
<?php
class PublicAction extends Action{
public function index(){ $this->display(); }
Public function verify(){
import(‘ORG.Util.Image’);
ob_end_clean();
Image::buildImageVerify();
}
}
?>