BugReporter allows you to report bugs when building a web site with a few people. If you, for instance, are working on a website with a team, other members can easily report errors, mistakes, bugs etcetera with two clicks.
BugReporter is mainly a JavaScript that can be embedded into your template or pages.
A demo says more than 1,000 words. So you can try the BugReporter at the demo page, and you can see the list of bugs reported as well.
BugReporter version 1.0 (RAR-file, 6.33 kB)
Implementing can be done in a few steps:
<script type="text/javascript" src="/path/to/the/bugreporter.file.js"></script>;window.onload event handler to trigger a function, you have to change bugreporter.js. At the bottom of the file you have to completely remove the window.onload statement. Then add the bugReporter() function to your window.onload, or place the following code at the bottom of your page too: <script type="text/javascript">bugReporter()</script>.Since I only know PHP, and needed only storage in a text-file, the server-side of the script is very small. But with the following information you might be able to customize the server-side:
name - the name of the person who submits the bug;bug - the bug;comments - the comments;location - URL of the page with the bug.