vote up 5 vote down star
2

I work on a web site with only a few other programmers. We've been using Fogbugz for issue tracking, and while we like it, it is expensive, and isn't exactly suited to our needs--we'd really like the users of our web site to be able to access the bug lists, rather than submitting bugs blindly with no way of knowing whether an issue has already been reported.

What bug tracking systems do people recommend that allow public searches? We are looking at Bugzilla, but the bug reporting screen has a lot of unnecessary stuff, creating what we think may be to much of a barrier for bug reporting. We'd like to make things as easy as possible on users who are reporting bugs--ideally, they we'd like them to be able to report bugs without even registering an account, although would only be a bonus. Also, the cheaper the better, although we will pay for good software if it is a significant improvement over what we can get for free.

flag

25% accept rate
People really can't be stuffed reporting errors in your product all the time, they will report a few and then mainly just work around them. From this perspective, being able to look through old bugs to find if it is already reported is just not going to happen. That is your job. – Greg Mar 19 at 9:34
It is worthwhile to be able to see how an issue is progressing however, so having some public view of issues and progress is a good idea. – Greg Mar 19 at 9:35
1  
This looks like a duplicate of stackoverflow.com/questions/12328/… – Steve Melnikoff Mar 19 at 23:54

13 Answers

vote up 0 vote down

Have a look at Gemini from www.countersoft.com We used it in my last company and it performed really well. It's also easy to introduce to users who may not be using something like it currently.

link|flag
vote up 0 vote down

Take a look at TeamSupport.com. We use it and have been very happy with it.

link|flag
vote up 0 vote down

Mantis is quite good. Offers public access and is very configurable.

link|flag
vote up 1 vote down

If you are Windows shop take a look at BugTracker.net. Its OSS, windows centric and easy to set up and modify if you have any experience with ASP. Not fancy but we have never had any problems with it.

link|flag
vote up 0 vote down

Check Lighthouse at http://lighthouseapp.com/. Just give it a look-see for features. Worked well for our team at one point.

link|flag
vote up 0 vote down

If you want to try Trac out, I recommend getting the packaged distro from BitNami, who provide a complete implementtaion including web server etc. that you can simply unzip and run without interferring with any other servers you may be running. They also package the Mantis tracker, which you should also consider.

link|flag
vote up 3 vote down

Check out Redmine. It has issue tracking, repository viewer, forums, wiki, cross project issue references, etc..

Currently ongoing implementations are to create plugins to support agile/Scrum procedures.

link|flag
agreed Redmine is sick. It has support for svn and git systems (I believe). – vrish88 Mar 19 at 8:47
Redmine looks great, but my sysadmin refuses to install Ruby apps :-( – Pete Jun 30 at 22:30
vote up 2 vote down

See what-bug-tracking-software-do-you-use for previous question on this topic. This should provide some potential trackers that meet your public search requirement.

Our company uses open source Roundup - which can be publicly accessible and is very flexible/configurable. Non-free (in most cases) Jira also has a good reputation, and I think it allows anonymous access.

link|flag
vote up 0 vote down

You should have a look at Target Process it's free for teams of up to 6 people. It also provides awesome Agile project management features. Yeah can configure it to pretty much any Agile development process.

link|flag
vote up 1 vote down

At our company we are using Trac, mostly because it integrates well with SVN and Hudson. It's pretty basic functionality-wise (no real workflow functions to speak of), but works well for us. We're not running it on a public webserver, but I've seen a lot of other projects who are.

link|flag
vote up 1 vote down

You might take a look at TRAC. Although users do have to have an account (I believe) it is free and pretty 'light-weight', and yes you can search tickets. Our company uses it for some of its projects.

link|flag
No, it allows anonymous access for searching and viewing. – fred-o Mar 19 at 8:04
Thanks, wasn't sure about that - I never used anonymous access before. – Razzie Mar 19 at 8:08
vote up 2 vote down

Personally, I like Trac. It is not too complicated, so normal users will actual be able to enter and search for bugs, and it does its job.

link|flag
vote up 10 vote down

Take a look at Trac! It's free, light-weight, web-based interface (of-course you can install it on a local server), has tons of plugins to customize it to your needs.

Few plugins that will make it work as you have mentioned

  • TracAccountManager : This plugin allows users to register on your site before they can post bugs. (Also See: 'anonymous account' below)
  • webadmin : Allows you to configure trac using the web-interface instead of the command line trac-admin command.

Permissions
Apart from that you can customize permissions as per your requirement. For example: you can set only TICKET_VIEW, and TICKET_CREATE for users who register online.

Anonymous account/Guest account
Trac has a special account (user-name) named "anonymous*, people who are not logged in are assigned this username. If you do not want users to register to create Ticket, you may assign TICKET_VIEW and TICKET_CREATE permissions for "anonymous" account. (I prefer to only set XXXXX_VIEW permissions to this account.)

Bug report/Ticket fields
You can also modify/add/delete ticket(bug report) components (field) as per your requirements. Specify default values for fields, so that developers/users are saved from filling each and every field.

Email Notification
Setting up mail notifications is as easy as editing the trac.ini file under the conf folder under your Trac project folder. Just fill in your server IP/address, username, field. Customize other fields as per your taste.

Other features provided by Trac

  • Integrated wiki. Yes! You have a full-blown wiki as part of trac. It's great for creating documentation.
  • Customized reports/query: You can create custom query, visually (no need to type, although that's an option) and save them for later use. A query/report is nothing more than a search for bug/ticket list.
  • Integration with version control systems: By default Trac supports Subversion. you can browse source online, view visual diffs, view commit logs, and a host of other cool stuff. (We are using GitPlugin to interface it with git)

All these tasks are very simple to do on Trac, (no matter how difficult I make them sound :) )

SideNote
There are myriads of Trac plugins, allowing you to change the complete UI layout/colors, adding charting capabilities and what not. Visit TracHacks website for a comprehensive list of 'hacks' (plugins) available for Trac.

link|flag
Trac also has the advantage of being horribly ugly and with zero attention to usability issues. The hallmark of every quality open source project. – shoosh Mar 19 at 8:31
Care to elaborate? Concrete improvement suggestions are certainly welcome. – Remy Blank Mar 19 at 8:38
1  
@shoosh : Umm ... I beg to differ, I find Trac's interface MUCH better than BugZilla's. Trac's interface is very clean and slick and most of the common tasks are available directly from the home page. Can you mention any usability issues you faced? – xk0der Mar 19 at 8:41

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.