Click here to Skip to main content
Licence CPOL
First Posted 10 Jan 2009
Views 14,290
Downloads 133
Bookmarked 49 times

Small and easy bug report system

By | 16 Jan 2009 | Article
A very small and easy C# + PHP bug report system.

Code

Introduction

A small bug tracking system, easy to implement and efficient.

Background

The system uses a PHP file and a SQLite database on a remote server to read and write errors captured.

Using the Code

To send an error, you simply have to make a POST request to the file bugs.php, specifying the parameters "program", "error", and "text". For example, to send all the non captured Exceptions in a program, you could do something like this:

[STAThread]
static void Main()
{
    Application.EnableVisualStyles();
    Application.SetCompatibleTextRenderingDefault(false);

    Application.ThreadException +=
      new
System.Threading.ThreadExceptionEventHandler(Application_ThreadException);
    AppDomain.CurrentDomain.UnhandledException +=
      new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException);

    Application.Run(new Form1());
}

static void Application_ThreadException(object sender,
            System.Threading.ThreadExceptionEventArgs e) {
    SendException(e.Exception);
}

static void CurrentDomain_UnhandledException(object sender,
                          UnhandledExceptionEventArgs e) {
    SendException((Exception)e.ExceptionObject);
}

static void SendException(Exception error) {
    System.Net.WebClient webclient = new System.Net.WebClient();
    System.Collections.Specialized.NameValueCollection postData =
               new System.Collections.Specialized.NameValueCollection(5);

    postData.Add("program", "Example version " +
                 Application.ProductVersion);
    postData.Add("error", error.GetType().Name);
    postData.Add("text", error.ToString());

    webclient.UploadValues(new
Uri("http://www.example.com/bugs.php"), postData); }

To know the errors that have been sent, you can access them easily through any RSS reader, which allows viewing in a short time, and easily and conveniently. For example, if your PHP file is in www.example.com/bugs.php, you can add that URL to your favorite feed reader to keep informed of the errors that occurs in your application.

Update

Now you can set a password in the PHP file to prevent anyone can read the error log. Furthermore, it has functionality to delete individual records or the complete database.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Fco. Javier Marin

CEO

Spain Spain

Member

I'm a young entrepreneur from Cartagena (Spain). I'm the creator and owner of some popular websites like Chuletas and Wikiteka.
 
Visit my blog at DigitalEstudio.es

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionEnter - '\n' ? PinmemberMystery12320:30 13 Jan '09  
AnswerRe: Enter - '\n' ? PinmemberFco. Javier Marin23:59 13 Jan '09  
GeneralRe: Enter - '\n' ? PinmemberMystery1231:13 14 Jan '09  
AnswerRe: Enter - '\n' ? PinmemberMario_F14:32 20 Jan '09  
GeneralArticle PinmemberNedim Sabic23:55 11 Jan '09  
GeneralRe: Article PinmemberFco. Javier Marin0:02 12 Jan '09  
GeneralNo internet connection PinmemberJohnny J.0:05 11 Jan '09  
GeneralRe: No internet connection PinmemberFco. Javier Marin0:10 11 Jan '09  
QuestionWhy PHP? Pinmemberbobfox10:45 10 Jan '09  
AnswerRe: Why PHP? PinmemberFco. Javier Marin23:14 10 Jan '09  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120517.1 | Last Updated 16 Jan 2009
Article Copyright 2009 by Fco. Javier Marin
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid