Search found 393 matches

by kamermans
Fri May 31, 2013 9:55 am
Forum: PHP API
Topic: Opera mini detection failure
Replies: 4
Views: 37600

Re: Opera mini detection failure

Hi DJ, You've highlighted an area that is regularly debated: if the API must decide between detecting the device or detecting the browser, but not both, what should it choose? Currently, the Database API will err on the side of the device for OperaMini requests, since OperaMini does not send much he...
by kamermans
Thu May 30, 2013 5:50 pm
Forum: PHP API
Topic: Typo in example
Replies: 1
Views: 30120

Re: Typo in example

You're correct - thanks for the good catch! We'll get it updated soon.
by kamermans
Thu May 30, 2013 4:37 pm
Forum: PHP API
Topic: Should wurfl.zip extract every time??
Replies: 16
Views: 96710

Re: Should wurfl.zip extract every time??

You don't need to remove that line. The WURFL data should only be reloaded if the wurfl.zip file has changed or if the persistence data is incomplete. This behaviour is enabled with the auto_reload option. If the data is being reloaded all the time, there must be something wrong, but I would check f...
by kamermans
Tue May 28, 2013 11:28 am
Forum: Miscellaneous
Topic: Explicit device list with realtime streaming features
Replies: 4
Views: 37993

Re: Explicit device list with realtime streaming features

Hi DJ, Here is a script that will use the Database API (Tera-WURFL) to generate a list of devices that have "streaming_video" set to true: <?php require_once '../Tera-WURFL/TeraWurfl.php'; $wurfl = new TeraWurfl(); $devices = $wurfl->db->getFullDeviceList(TeraWurflConfig::$TABLE_PREFIX.'Merge'); for...
by kamermans
Tue May 21, 2013 10:55 am
Forum: ScientiaMobile WURFL Cloud Service
Topic: Why do I have connection error with a premium account?
Replies: 8
Views: 17088

Re: Why do I have connection error with a premium account?

Hi Claire,

I totally understand your concern, and I can assure you that even one second of downtime is unacceptable to us. Is this a periodic problem, or does it always fail? We can also try using the CURL method instead of fsock if you have the CURL extension enabled in PHP.
by kamermans
Mon May 20, 2013 8:59 pm
Forum: ScientiaMobile WURFL Cloud Service
Topic: Why do I have connection error with a premium account?
Replies: 8
Views: 17088

Re: Why do I have connection error with a premium account?

Hi, sorry about the trouble. I imagine there is a firewall in front of your server that is blocking outbound connections.

Are you using a shared-hosting plan, and if you don't mind sharing, which hosting provider are you using?
by kamermans
Mon May 06, 2013 9:16 am
Forum: Varnish Cache, Apache, NGINX Modules and WURFL C++ API
Topic: Lighttpd module
Replies: 3
Views: 37703

Re: Lighttpd module

Hi, we do not currently have a module for lighttpd.
by kamermans
Mon Apr 29, 2013 10:13 am
Forum: WURFL XML Structure
Topic: How does standard Wurfl cache - looking into the memory foot
Replies: 1
Views: 34049

Re: How does standard Wurfl cache - looking into the memory

First, there are two types of storage that the PHP API uses, Persistence and Cache. The Persistence layer takes the WURFL.XML file and puts it in a format that PHP can easily consume, like files or APC objects. When uncached requests are made to the API, it will look for the matching device in the p...
by kamermans
Fri Apr 26, 2013 4:11 pm
Forum: ScientiaMobile WURFL Cloud Service
Topic: Device not recognized: Samsung Galaxy SII - GT-I9100
Replies: 1
Views: 6897

Re: Device not recognized: Samsung Galaxy SII - GT-I9100

Hi, thanks for the information. We will be pushing an update out to the cloud service in the next couple hours that will resolve this issue.
by kamermans
Mon Apr 22, 2013 3:33 pm
Forum: ScientiaMobile WURFL Cloud Service
Topic: Usage stats anomaly
Replies: 3
Views: 8237

Re: Usage stats anomaly

Hi,

The culprit is "Xenu Link Sleuth", which caused 129899 detections. I have removed these detections from your history, so they will not be counted against you.
by kamermans
Mon Apr 22, 2013 10:30 am
Forum: ScientiaMobile WURFL Cloud Service
Topic: Usage stats anomaly
Replies: 3
Views: 8237

Re: Usage stats anomaly

Hi, I am looking into your issue right now.
by kamermans
Tue Mar 26, 2013 11:41 am
Forum: ScientiaMobile WURFL Cloud Service
Topic: accurate detection on wurflcloud service
Replies: 1
Views: 7262

Re: accurate detection on wurflcloud service

Hi,

The WURFL Cloud Service runs in high-performance mode, although we are considering different options to allow for more accurate detection of desktop devices in the Cloud in the coming months.
by kamermans
Thu Mar 21, 2013 3:42 pm
Forum: Device Detection Issues
Topic: Need some help with my script
Replies: 4
Views: 10803

Re: Need some help with my script

Hi Henk,

The code I posted previously does just that. Note that their is a "!" before $isTablet which means "if is wireless and not is tablet".
by kamermans
Tue Mar 19, 2013 8:57 pm
Forum: Device Detection Issues
Topic: Need some help with my script
Replies: 4
Views: 10803

Re: Need some help with my script

Here's an updated code snippet: require_once("wurfl/TeraWurfl.php"); $wurflObj = new TeraWurfl(); $wurflObj->getDeviceCapabilitiesFromAgent(); $isWireless = $wurflObj->getDeviceCapability("is_wireless_device"); $isTablet = $wurflObj->getDeviceCapability("is_tablet"); if($isWireless && !$isTablet) he...
by kamermans
Sat Feb 23, 2013 4:48 pm
Forum: Device Detection Issues
Topic: Detect DPI/retina
Replies: 9
Views: 21058

Re: Detect DPI/retina

Hi Anders,

Unfortunately, there is not a reliable way to detect Retina devices at this time. Note that for other, non-Apple devices, you can always look at the resolution_width / physical_screen_width (in millimeters).
by kamermans
Sat Feb 23, 2013 4:12 pm
Forum: Java API
Topic: How to use high accuracy mode without spring beans?
Replies: 3
Views: 11721

Re: How to use high accuracy mode without spring beans?

I'm glad you found the answer - thanks for posting!
by kamermans
Fri Feb 08, 2013 12:32 pm
Forum: ScientiaMobile WURFL Cloud Service
Topic: Need to query using Model Name not USer Agent
Replies: 5
Views: 11690

Re: Need to query using Model Name not USer Agent

Hi,

Currently this feature is not supported, however, all the model names are available in the WURFL.xml file as well, so searching that file might be an option.
by kamermans
Fri Feb 08, 2013 12:26 pm
Forum: .NET API
Topic: System.Security.SecurityException
Replies: 5
Views: 37504

Re: System.Security.SecurityException

Thanks for the feedback, we will find an appropriate place in the documentation to add this tip.
by kamermans
Wed Jan 30, 2013 8:57 am
Forum: Varnish Cache, Apache, NGINX Modules and WURFL C++ API
Topic: Inject detection result in Header
Replies: 2
Views: 34708

Re: Inject detection result in Header

Hi Ulrik, Our modules for Varnish-Cache, NGINX and Apache can all be used to inject headers into the incoming request, and, assuming you're using them as a reverse-proxy/load-balancer, this can seriously simplify the deployment of WURFL in your environment. Here's a blog post from Luca Passani, our ...
by kamermans
Tue Jan 29, 2013 2:16 pm
Forum: ScientiaMobile WURFL Cloud Service
Topic: What is the default timeout on the client?
Replies: 5
Views: 11076

Re: What is the default timeout on the client?

Also, note that our load balancers are very picky about timing and they will give you a "HTTP/1.0 408 Request Time-out" if the request is not completed in 1 second, so the connection should not be left open unless there is something seriously wrong on your side.