How can I detect if a user is viewing my web site from a mobile web browser so that I can then auto detect and display the appropriate version of my web site?
feedback
|
|
Yes, reading the User-Agent header will do the trick. There are some lists out there of known mobile user agents so you don't need to start from scratch. What I did when I had to is to build a database of known user agents and store unknowns as they are detected for revision and then manually figure out what they are. This last thing might be overkill in some cases. If you want to do it at Apache level, you can create a script which periodically generates a set of rewrite rules checking the user agent (or just once and forget about new user agents, or once a month, whatever suits your case), like
which would move, for example, requests to http://domain/index.html to http://domain/mobile/index.html If you don't like the approach of having a script recreate a htaccess file periodically, you can write a module which checks the User Agent (I didn't find one already made, but found this particularly appropriate example) and get the user agents from some sites to update them. Then you can complicate the approach as much as you want, but I think in your case the previous approach would be fine. | |||||
feedback
|
|
There are open source scripts on Detect Mobile Browser that do this in Apache, ASP, ColdFusion, JavaScript and PHP. | |||||||||||||||||||
feedback
|
|
Just a thought but what if you worked this problem from the opposite direction? Rather than determining which browsers are mobile why not determine which browsers are not? Then code your site to default to the mobile version and redirect to the standard version. There are two basic possibilities when looking at a mobile browser. Either it has javascript support or it doesn't. So if the browser does not have javascript support it will default to the mobile version. If it does have JavaScript support, check the screen size. Anything below a certain size will likely also be a mobile browser. Anything larger will get redirected to your standard layout. Then all you need to do is determine if the user with JavaScript disabled is mobile or not. | |||||||
feedback
|
|
My favorite Mobile Browser Detection mechanism is WURFL. It's updated frequently and it works with every major programming/language platform. | |||||||||
feedback
|
|
Please take a look at http://51degrees.codeplex.com/. It is an ASP.NET open source module which detects mobile devices and provides auto redirection to mobile optimized pages when request is coming from mobile device. It makes use of WURFL mobile device database. For redirection there is no need to modify existing ASP.NET web application pages. Apart from this it also gives upto-date mobile capability information like manufacturer, model, screen height & width, image formats supported etc...... which helps to customize pages for best mobile output. The latest release has facility to define different redirection locations based on the conditions. For e.g. In below example MobileDeviceManufacturer is used as the property. This properties are exposed through the HttpRequest classes Browser property. Both WURFL capabilities and ASP.NET Browser properties can be used with the property attribute. If none of the match and the requesting device is a mobile device then the mobileHomePageUrl will be used.
So very easy to implement redirection without any need to update your existing website ASP.NET pages | |||||||
feedback
|
|
Have you considered using css3 media queries? In most cases you can apply some css styles specifically for the targeted device without having to create a separate mobile version of the site.
You can set the width to whatever you want, but 1025 will catch the iPad landscape view. You'll also want to add the following meta tag to your head:
Check out this article over at HTML5 Rocks for some good examples | |||
feedback
|
|
Here's how I do it in JavaScript:
See an example at www.tablemaker.net/test/mobile.html where it triples the font size on mobile phones. | ||||
feedback
|
|
The Mobile Device Browser File is a great way to detect mobile (and other) broswers for ASP.NET projects: http://mdbf.codeplex.com/ | |||||
feedback
|
|
You can check the User-Agent string. In JavaScript, that's really easy, it's just a property of the navigator object.
You can check if the device if iPhone or Blackberry in JS with something like
if isIphone is true you are accessing the site from an Iphone, if isBlackBerry you are accessing the site from a Blackberry. You can use "UserAgent Switcher" plugin for firefox to test that. If you are also interested, it may be worth it checking out my script "redirection_mobile.js" hosted on github here https://github.com/sebarmeli/JS-Redirection-Mobile-Site and you can read more details in one of my article here: | |||
|
feedback
|
This example works in asp.net | ||||
|
feedback
|
|
Yes user-agent is used to detect mobile browsers. There are lots of free scripts available to check this. Here is one such php code which will help you redirect mobile users to different website. | |||
feedback
|
|
bump Found this site recently, http://detectmobilebrowser.com/ Seems to do a regular expression check for commonly known sequences of text in the UA string. Provides code samples for various languages too. | |||||
feedback
|
|
I put this demo with scripts and examples included together: http://www.mlynn.org/2010/06/mobile-device-detection-and-redirection-with-php/ This example utilizes php functions for user agent detection and offers the additional benefit of permitting users to state a preference for a version of the site which would not typically be the default based on their browser or device type. This is done with cookies (maintained using php on the server-side as opposed to javascript.) Be sure to check out the download link in the article for the examples. Hope you enjoy! | |||
|
feedback
|
|
Regarding Mobile Device Browser File: Quote: "Due to the organizational restructuring of the team that developed and supported the Mobile Device Browser file, we will no longer have the resources to support and update this CodePlex project. The team will be providing two more releases – one on the 27th July 2010 and the final release on the 24th August 2010." | |||
|
feedback
|
|
There's a brand new solution using Zend Framework. Start from the link to Zend_HTTP_UserAgent: | |||
|
feedback
|
|
In Perl it's easy:
| ||||
|
feedback
|
|
I found a great site http://deviceatlas.com/downloads That wrote an api in 5 languages, php, .net , java ... After a free registration you can download the code with json file (need to update this file often). A try it, its work very fast for THOUSANDS calls in one second. | ||||
feedback
|
|
You haven't said what language you're using. If it's Perl then it's trivial:
| ||||
|
feedback
|
|
MobileESP has PHP, Java, APS.NET (C#), Ruby and JavaScript hooks. it has also the Apache 2 licence, so free for commercial use. Key thing for me is it only identifies browsers and platforms not screen sizes and other metrics, which keeps it nice an small. | |||
|
feedback
|
|
for ANDROID , IPHONE, IPAD, BLACKBERRY, PALM, etc...
| |||
|
feedback
|
|
We use one of the many handset detection web services out there. We chose Just google "handset detection" and all the providers come up! | |||||
feedback
|
|
For the record, DeviceAtlas isn’t based on WURFL but we did use data from it in the past, in addition to data from our many other data partners (listed on our site). DeviceAtlas uses a completely different data structure, API and pretty much everything else compared with WURFL. You can view our device property list here (including some useful HTML5 properties), in this case a Galaxy S2: http://deviceatlas.com/node/2410065 | |||
|
feedback
|
protected by Community♦ Feb 1 at 23:34
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.