Startups Stack Exchange Archive

Asking for feedback (reporting of errors) without making your product seem inferior

I have been programming for some time and I have created this software I would like to sell to educational institutions. The problem is how to request for feedback and errors reporting(mostly) without making the product seem error-prone.
I don’t have a server to send error reports to so I can’t do internally in the software. The error reporting will have to be in the form of emails or phone calls. Any ideas.

Answer 5867

Use a good tool to collect bug reports efficiently

Use Google Forms.

It replaces the need to use your own server. Just create a form to collect the error reports, then put a discreet but visible link to it in your software.

I don't think there is a special way to ask to report errors without making the product look error prone. Those are two separate issues.


How to get users to report errors

You get the users to report errors by asking them to report errors and giving them a convenient way to do so. Convenient in my opinion is a link to a form. Not an email address or a phone number. Not for you to manage it that way, anyway.


How to make the product not seem error prone

You fix as many bugs as you can as soon as you can. For this, you have to know about them. Which means the users have to report them. There is no way to mask the bugs. The clients will see them and know about them before you do. Which is why you need them to tell you about them.

Answer 5884

This seems more like a programming question that should be on stackoverflow. But there are many methods of error reporting and they can be configured to do it automatically or manually.

If you do not want to bring attention to the error, the best way would be to do it automatically or with less interactivity. In your case, a good way would be to configure have the exception handler to report using SMTP or similar means. That way, the system can send the error report to you via email without user interactivity. You can use the SMTP server linked to your domain name or you can use something like GMail - http://lifehacker.com/111166/how-to-use-gmail-as-your-smtp-server. There are several exception handling packages like http://www.madshi.net/ that can do this.

Answer 6005

Go to Freelancer, post a contest in the testing section and offer a bounty for the most comprehensive error report. This way you’ll get multiple error reports and you’ll only have to pay out the bounty to one person.

Similarly you can use Betalize, they have testers signed up ready to dissect your product.

Answer 6009

Education market is huge.

Potentially, there are thousands of clients waiting in line for your product. Identify a few and give them your product/service free of charge in exchange for their honest feedback.

Position/market your offer wisely: few people will be interested in testing someone’s buggy prototype, but getting access to an early beta version just sound a whole lot better.

Not only you’ll be able to get feedback that you need - you might tap into real clients that will have their own ideas (aka features) on how to improve your product and, this time around, they’ll be much more willing to pay very real money for it.


All content is licensed under CC BY-SA 3.0.