Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What would be a good Coldfusion-based bug tracking software?

What I am looking for is a tool that easily or automatically sends coldfusion error messages to their system.

Then I can use the web-based interface, to manage priorities, track who fixed what and so forth.

But I want to use this to help us deal with errors better, but also to show the importance of a bug tracking system to my fellow works.

System Requirements: Apache, Windows, Coldfusion 8 Standard, Sql Server 2005.

Financial Requirements: Free or Open Source

Goal Or Purpose: To encourage my fellow workers to want and use a bug tracking system.

Does this re-write make more sense?

Thanks

Craig

like image 591
crosenblum Avatar asked Feb 03 '10 18:02

crosenblum


People also ask

What is bug tracker software?

Bug tracking software, or issue tracking software, refers to software used by quality assurance (QA) and software development teams to report software bugs and problems. Thorough bug tracking is essential for good software development.

What is defect tracking tool or bug tracking tool in software testing?

Bug tracking is the process of logging and monitoring bugs or errors during software testing. It is also referred to as defect tracking or issue tracking. Large systems may have hundreds or thousands of defects. Each needs to be evaluated, monitored and prioritized for debugging.


2 Answers

Wiki has a list of issue tracking software, maybe this list could help. http://en.wikipedia.org/wiki/Comparison_of_issue_tracking_systems

You may be able to find a hosted service and use either email or web services to create the ticket using onError. With that said, a simple issue tracking app could be created for your site using the same DB used to drive the content. 2 or 3 tables would take care of the data storage and you're already using CF so the application layer is already there.

HTH.

like image 118
genericHCU Avatar answered Sep 22 '22 05:09

genericHCU


I have been heavily using this type of a setup for several years by email only, and the last 3 years with a Bug Tracking Software.

I must say, the bug tracking software has made my life so much more peaceful. Nothing is left, forgotten, or slips through the cracks. It's easy to find trends in errors, and remember "all the times" it happened.

Our setup is like this:

1) Coldfusion + Appropriate framework with error reporting - It doesn't matter what you use. I have used Fusebox extensively and am making the transition to ColdBox. Both are very capable, in addition to Mach-II, FW/1, Model-Glue, etc. The key part you have to find in them is their ability to catch "onError", usualy in the application CFC.

2) Custom OnError Script - Wherever an error occurs, you want to capture the maximum amount of information about that error and email it in. What we do is, when an error occurs, we log the user out with a message of "oops, log in again". Before logging them out, the application captures the error and emails it to Fogbugz. Along with it, at the top we include the CGI variables for the IP address, browser being used, etc. Over time you will find the things you need to add.

3) Routing in Fogbugz. A 2 user version of Fogbugz is free, and hosted online. There are two main ways to submit bugs. One is to email one in at a time. So if an error happens 2000 times, you get 2000 emails, and 2000 cases. Not always the best to link them together, etc. They have a feature called BugzScout, which is essentially an HTTP address that you do a form post to with cfform with all of the same information you would have put into the email. There's plenty of documentation on this and something I've always wanted to get around to. I had a scenario of 2000 emails for the first time happen a few weeks ago so I'll be switching over to this.

Hope that helps. Share what you ended up doing and why so we all can learn too!

like image 22
Jas Panesar Avatar answered Sep 24 '22 05:09

Jas Panesar