• DotProject安装配置笔记(转载)


    原文地址:http://liurongming.blog.163.com/blog/static/105301442200811193134538/

    dotproject 是一个很不错开源项目管理系统,http://www.dotproject.net

    官方站点提供了DEMO: http://www.dotproject.net/demo/

    管理员:admin/admin    普通用户:guest/guest

    中文版目前用的是dotproject 2_1_2_UTF-8_Chinese_by_GENE

    前提条件:有AMP环境(部署了apache,mysql,php)

    安装步骤:

    1.创建数据库和mysql用户

    mysql> CREATE DATABASE dotproject;

    mysql> GRANT ALL PRIVILEGES ON dotproject.* TO dotproject@localhost IDENTIFIED BY "yourpassword" WITH GRANT OPTION;

    mysql -uroot -p 回车(默认安装时没密码)然后执行下面语句。

        CREATE DATABASE dotproject; (建立数据库)  

        GRANT ALL PRIVILEGES ON dotproject.* TO dotproject@localhost IDENTIFIED BY 'password'; (建用户和密码)

    2.解压dotproject 2_1_2_UTF-8_Chinese_by_GENE到AMP的www目录下,改目录名为dotproject。注意要用这个utf-8版本,从dotproject下载的版本中文会乱码。 

      修改配置文件,dotproject/include/下面有个默认的config-dist.php,复制一个并重命名为config.php,然后编辑这个config.php文件:

    数据库配置

    $dPconfig['dBType'] = "mysql";      // ONLY MySQL is supported at present

    $dPconfig['dbhost'] = "localhost"; //数据库服务器名称,一般不用修改

    $dPconfig['dbname'] = "dotproject";  // 刚才创建的数据库名称

    $dPconfig['dbuser'] = "dotproject";  // 数据库用户名称

    $dPconfig['dbpass'] = "'password'";  // 上面那个用户的密码

    $dPconfig['dbport'] = "3306";  // 修改为你的mysql的端口,如果你自己没改过的话这里不用动了

    3.重启AMP服务,打开网址:http://localhost/dotproject/install/index.php,则可以完成安装过程,包括数据库的建立。

    4.到http://localhost/dotproject登陆,用户:admin 密码:passwd。

        到system admin->Default User Preferences ,设置默认语言为简体中文。

     ok,完成安装。

    附:安装后可能用到的一些修改:

    1.-------------解决dotproject中文名文件下载乱码问题-----------------------

    【问题】
    文件管理,上传中文文件名的文件,下载时候文件名出现乱码。
    【解决】
    还是编码问题,需要转码。
    打开根目录下的fileviewer.php文件,找到以下代码:

    <?php
    ……
    header('MIME-Version: 1.0');
    header( 'Pragma: ');
    header( 'Cache-Control: public');
    header( 'Content-length: '.$file['file_size'] );
    header( 'Content-type: '.$file['file_type'] );
    header( 'Content-transfer-encoding: 8bit');
    header( 'Content-disposition: attachment; filename="'.$file['file_name'].'"' );
    ……
    修改为:

    <?php
    ……
    header('MIME-Version: 1.0');
    header( 'Pragma: ');
    header( 'Cache-Control: public');
    header( 'Content-length: '.$file['file_size'] );
    header( 'Content-type: '.$file['file_type'] );
    header( 'Content-transfer-encoding: 8bit');
    header( 'Content-disposition: attachment; filename="'.iconv("UTF-8","gb2312",$file['file_name']).'"' );

  • 相关阅读:
    linux 查看 服务 命令
    Java Swing中键盘事件的处理(转)
    VI常用命令及快捷键(转)
    Linux source用法(转)
    无线桥接 WDS 中继(转)
    在远程桌面连接中使用任务管理器(转)
    linux 运行 级别(转)
    linux 当前用户 命令 w who(转)
    vecket适合和不适合的10种人(转)
    在查找预编译头使用时跳过解决(转)
  • 原文地址:https://www.cnblogs.com/mfryf/p/2349332.html
Copyright © 2020-2023  润新知