今天刚装了Vermis

    以前项目管理用的redmine,但是觉得太重量级,很多东西用不到。稍加修改后速度虽然还可以,但是还是喜欢用Trac那样的ticket系统,无奈Trac安装让我抓狂。

    刚好发现了Vermis,lamp环境,轻巧,简单,纯粹。感觉很好

    默认语言包里没有中文,自己修改了下语言文件翻译了过来。

    还有遇到问题就是默认的时间不准,估计是时区设置,没看到设置的,以后再找找源代码里。

Requirements

  • PHP 5.2.X (or newer)
  • MySQL 5.X
  • Apache HTTP Server (or compatible)
  • mod_rewrite (or compatible)

Installation

1. Download the vermis package from http://vermis.diabloware.com, usually it should be called like vermis-<version>.zip or similar 

2. Unpack it to your public_html directory (or different) used by your web server. 

3. Create a new MySQL database or use an existing one. 

4. Copy config/sample.config.php to config/config.php and edit values inside. 

5. Import SQL database. 

mysql --user=[db username] --password=[db password] < database.sql 

6. Create directories and set permissions to them. 

mkdir web
mkdir web/upload
mkdir web/upload/tmp
mkdir web/upload/issues
mkdir web/captcha
mkdir log
chmod -R ugo=rwx web/upload web/captcha log 


7. Run vermis from a web browser and login with username admin and password admin :)

Installation using Phing

The best way to build vermis on your local machine is to use phing. If you don't have phing yet, go to this page where you can find some help. After phing installation all you need to do is to set up config file like during a normal installation, and then type in your console: 

phing build 

This command runs vermis build chain: preparing directories, creating database structure, populating fixtures, etc.

你可能感兴趣的:(今天刚装了Vermis)