• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

bug tracking system ?

 
Ranch Hand
Posts: 782
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi All,

I didn't find any suitable forum than "Testing" to send this post. Moderators, you may fwd this post to most suitable forum.


Actually am leading a team of software developers. Usually we are lodging bugs in MS Word document which is shared b/w team members. Now issue is that client also get access on test application so he is also reporting bugs.

I am looking for a bug tracking system in which i can make accounts for client and my co. colleagues so that allowed people can update bug directly in it. And developers should also have access to same system/page where they can see their assigned bugs and update status once done. Means a common bug status page shared between all concern parties.

Please advise.

Thanks in advance.

Bye,
Viki.
 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello Vikrama,


I can suggest you to check bug tracking from BontQ

You can creat many companies and assign to this companies your clients and etc.

Reply me if you find that this will help you.

 
Ranch Hand
Posts: 185
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
you can check BugZilla at http://www.bugzilla.org/
 
Bartender
Posts: 2700
IntelliJ IDE Opera
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
If you're willing to spend a couple of bucks then I would recommend Jira.
 
Vikrama Sanjeeva
Ranch Hand
Posts: 782
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

Thanks for the inputs. I am looking for open source (free of cost). I have heard of Bugzilla but never tried. Can somebody share experience with working Bugzilla in a situation i mentioned in my OP ?

Thanks

Bye,
Viki.
 
author & internet detective
Posts: 41860
908
Eclipse IDE VI Editor Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I actually think our IDEs and other Tools forum is more appropriate since this about tools. Moving.
 
Saloon Keeper
Posts: 27764
196
Android Eclipse IDE Tomcat Server Redhat Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Jira offers good deals, especially for open-source projects, but they had a $5 special last year that as far as I can remember was OK for use on commercial development. It's fairly easy to get up and running and a lot of its components are stock Java items such as the Jakarta packages.

I'm currently using Trac. Unlike Jira, it's not coded in Java - it's in Python, but it works quite well. It's one of the most popular issue-management systems for open-source projects. It not only manages tickets, it has a built-in wiki which is good for building up design documents, user reference information and whatever else you can think of to do with a wiki. Trac tickets can reference wiki entries and vice versa. Trac is also quite customizable, has a generous supply of third-party plug-ins, and integrates tightly with version control systems such as Subversion and IDEs like Eclipse. There's also decent security support, so you can restrict who can see and do things. I'd let you browse one of mine, but they're full of confidential client data. To make life simpler, I run Jira in appliance VMs. The VM contains the Apache webserver with WebDAV plugins, cvs and svn source code archives and the Trac code. I use external databases to hold the actual ticket/wiki data.

There is a wiki product for Jira now, although it's sold as a separate product.
 
Ranch Hand
Posts: 433
Netbeans IDE
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Then I also might throw in some alternatives
- Mantis (PHP)
- JTrac (Java)
- Redmine (Ruby)

Like Tim I was using a long time Trac which is really quite cool. I switched to Redmine which offered a bit more functionality and am since two years quite happy with it. (Main-reason for switching was, if I recall correctly, that Trac was not able to host more than one project at that time). But no matter which bugtracker you choose: everything is better than an office-document.
 
Tim Holloway
Saloon Keeper
Posts: 27764
196
Android Eclipse IDE Tomcat Server Redhat Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I looked at most of those. In my particular case, I liked Trac best. based, I think, largely on easy of installation, although Trac isn't a slam-dunk itself.

Trac does allow multiple projects these days, BTW. I'm doing just that!
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic