Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How best to get the user's browser information and settings for debugging purposes?

My problem is that I have a user that is having a problem displaying a portion of website I am creating, but I am unable to reproduce it on any of my browsers, even with the same version of the browser.

What I'm looking for is probably a website that I can send the user to which will tell me what version of the browser they are running along with the plugs installed and any other information that might affect the display of a page.

Any one know of anything like this?

Edit: The problem is related to CSS. They want some special image around all the text inputs, but on the users computer the text input displays partially outside of the image which is setup as a background.

I need more user specific information than Google Analytics as you can't separate out a specific user. I also suspect that it's more complicated than just the user agent.

I also can put the website out there publicly because they want to keep their idea private until it's released...grr.

like image 732
Darryl Hein Avatar asked Jan 08 '09 23:01

Darryl Hein


2 Answers

I find that sending users to the Support Details site (http://supportdetails.com/) is a great way to get systems and browser specifics. At that site all they have to do is enter your email address and the site will send details such as:

  • Operating System
  • Screen Resolution
  • Browser Name and version
  • Browser size (view port)
  • IP Address
  • Color Depth
  • Javascript enabled (Y/N)
  • Flash version installed
  • Cookies enabled (Y/N).

Those pieces of info can also be exported as csv or PDF. Pretty sweet.

The site is made by an agency called Imulus.

like image 77
Qa'id Avatar answered Sep 26 '22 15:09

Qa'id


Unfortunately, I don't know of any site that will log every detail about the users browser, as you request.

But perhaps browsershots.org could help with your debugging? It allows you to test you design in a lot of different browsers very easily.

EDIT: ... unfortunately restricted to the initial design on page load, since it simply takes a screenshot for you.

like image 31
Simon B. Jensen Avatar answered Sep 23 '22 15:09

Simon B. Jensen