tags:

views:

109

answers:

5

We have 2 systems at work that we pay for and we don't use and I don't know why, and at the moment we're using spreadsheets and let's just say it's not the greatest solution. So I'm going go to a little rogue and set a bugtracking system up in my dev environment and try and make people use it at least on my projects.

Any suggestions? Gotta be free, something that can run on an iplanet webserver (so cgis are best) and is really simple. Bugzilla is too complex. Something as easy to use as wordpress would be ideal. I'm tempted to use a wiki or wordpress simply because it's less worse than a spreadsheet, but a real bug tracking system would be best.

Some of you are going to suggest "why aren't you using one of your two existing systems?" and "if you're not using your existing systems you're not going to use a new one."

That may be true, but that doesn't help me. Any suggestions for something easy to set up and easy to figure out and use? The goal is to have as close to zero learning curve as possible so as to get it adopted more quickly and easily.

+1  A: 

Have you looked at Trac yet? It's generally very simple to use and has most of the features of a real bug-tracking system. You can use it for free for up to 5 users.

Ryan Berger
You can even use it with unlimited users, if you host it on your own server.
Kau-Boy
I got this set up and it does just what I want, thanks.
stu
+2  A: 

JIRA is $10 for a limited time (for 10 users) http://www.atlassian.com/starter/

Trac is free and excellent http://trac.edgewall.org/

Unfuddle is hosted (but free) http://unfuddle.com/

Dan Esparza
+1 on trac, highly recommended
lazy1
+2  A: 

A spreadsheet is better than a wiki or wordpress. At least a spreadsheet can have a "Status" column!

Bugzilla is highly configurable, and you can hide much of the complexity from your users.

That having been said, Trac is also a pretty nice simple solution. I have no idea if it runs on iplanet. Also, it's not so terribly easy to set up, unfortunately.

Also, see http://stackoverflow.com/questions/101774/what-is-your-bug-task-tracking-tool

livingtech
+2  A: 

I use Trac at the office with many non technical users that report errors to me. They instantly learned how to work with it. And I as a developer can use the full functionality like SVN synchronisation and Mylyn integration into Apatana (Eclipse).

The setup is quite easy, if you have a linux server that already has python activated. Just install it using easy_install as explained here: http://trac.edgewall.org/wiki/TracInstall#Usingeasy_install

I set up a multi project trac without being a python user or a linux pro. If you have any problem setting it up, just ask us.

Kau-Boy
+3  A: 

If you use Subversion for source code then you can use Artifacts.

Fyodor Sheremetyev