Search found 393 matches

by kamermans
Thu Jun 27, 2013 2:17 pm
Forum: Miscellaneous
Topic: PHP API method to extract wurfl.zip?
Replies: 2
Views: 34974

Re: PHP API method to extract wurfl.zip?

As long as allowReload is enabled, the WURFL will be reloeded the next time the WURFLManager is created: $wurlfManager = $wurlfManagerFactory->create(); This means that you don't really need to touch the wurfl.zip file, since modifying it will change its timestamp, then you can run a script like the...
by kamermans
Tue Jun 25, 2013 9:13 am
Forum: Device Information
Topic: removing devices
Replies: 1
Views: 7564

Re: removing devices

It is very unusual for a device to be removed, but occasionally a device (including device root) may be renamed to better represent the device, or to correct an ID that goes against the WURFL convention.
by kamermans
Tue Jun 25, 2013 8:13 am
Forum: Device Detection Issues
Topic: Lack of results for Midori browser
Replies: 1
Views: 6124

Re: Lack of results for Midori browser

From what I can tell, Midori is a desktop-only browser. We may make some improvements to the detection of Midori, but traditionally, niche desktop browsers have not been a priority. Anyway, thank you for the information, and for providing a list of sample user agents.
by kamermans
Mon Jun 24, 2013 11:02 am
Forum: ScientiaMobile WURFL Cloud Service
Topic: Unique id appended to detection results
Replies: 6
Views: 12367

Re: Unique id appended to detection results

Hi Alka, We have seen this request, but unfortunately we don't have time to describe in full detail how to implement this functionality for you. If you are still looking for assistance, we do have a reseller in South Africa that may be able to assist you. The company is called Mahala Mobile , and th...
by kamermans
Mon Jun 24, 2013 10:33 am
Forum: PHP API
Topic: Opera mini detection failure
Replies: 4
Views: 37529

Re: Opera mini detection failure

This particular user agent string is not being matched because it is invalid. Mozilla/5.0 (Symbian OS/9.3; Series60/3.2 NokiaE5-00/101.003; Profile/MIDP/2.1 Configuration/CLDC-1.1 ) AppleWebkit/525 (KHTML, like Gecko Version/3.0) In the UA you've pasted (above), there is a space between "Symbian" an...
by kamermans
Fri Jun 14, 2013 1:38 pm
Forum: ScientiaMobile WURFL Cloud Service
Topic: Cisco F5 integration
Replies: 6
Views: 10912

Re: Cisco F5 integration

Does the WURFL cloud premier license include access to the standalone clients?
A WURFL Cloud license entitles you to the WURFL Cloud service and related WURFL Cloud Client libraries, but it does not include access to our standalone products (WURFL OnSite and WURFL InFuze).
by kamermans
Thu Jun 13, 2013 10:27 am
Forum: ScientiaMobile WURFL Cloud Service
Topic: Cisco F5 integration
Replies: 6
Views: 10912

Re: Cisco F5 integration

The Stingray integration is done with our standalone Java API, which does not use the cloud service (this is also a third-party integration, btw). You can definitely use the WURFL Cloud service or the standalone PHP API (called WURFL OnSite) in your website itself. My point about performance was rel...
by kamermans
Thu Jun 13, 2013 10:11 am
Forum: ScientiaMobile WURFL Cloud Service
Topic: Cisco F5 integration
Replies: 6
Views: 10912

Re: Cisco F5 integration

Hi, We don't currently offer WURFL Cloud integration for load balancers since the latency of a cloud service would undermine the performance of your network hardware. I would recommend look at the WURFL InFuze product for Apache, which is an Apache module, installed locally, that provides device det...
by kamermans
Fri Jun 07, 2013 1:03 pm
Forum: ScientiaMobile WURFL Cloud Service
Topic: Strategy for differentiating tablet from phone?
Replies: 4
Views: 9903

Re: Strategy for differentiating tablet from phone?

To expand on the has_cellular_radio capability, this applies to devices with cellular data access. If you want to tell if the device can make/receive phone calls, you can use can_assign_phone_number, but note that this excludes phone-sized mobile devices like the iPod, Sony PSP, Samsung Galaxy Playe...
by kamermans
Thu Jun 06, 2013 6:45 pm
Forum: PHP API
Topic: Should wurfl.zip extract every time??
Replies: 16
Views: 96615

Re: Should wurfl.zip extract every time??

Ok, that makes sense. The API checks for the existence of one specific file in the persistence directory and assumes that the rest are also present. Deleting files in the persistence directory will certainly cause problems. In order to reload the data, you should ensure auto_reload is enabled, then ...
by kamermans
Thu Jun 06, 2013 1:09 pm
Forum: PHP API
Topic: Should wurfl.zip extract every time??
Replies: 16
Views: 96615

Re: Should wurfl.zip extract every time??

With memcache cache in front of filesystem persistence, if memcache can completely serve the request, there may be no need to access the filesystem, although the cache will expire eventually and the persistence information will be read from disk and re-cached. With regards to the apple_iphone_coreme...
by kamermans
Thu Jun 06, 2013 12:23 pm
Forum: ScientiaMobile WURFL Cloud Service
Topic: Strategy for differentiating tablet from phone?
Replies: 4
Views: 9903

Re: Strategy for differentiating tablet from phone?

With the WURFL Cloud Service, you can certainly use is_smartphone , although it sounds like you are more interested in differentiating tablets from all other wireless/mobile devices. In this case you can use the following logic: if (is_wireless_device) { if (is_tablet) { // do something for tablets ...
by kamermans
Tue Jun 04, 2013 11:36 pm
Forum: Device Information
Topic: Tesla Model S UserAgent
Replies: 1
Views: 6048

Re: Tesla Model S UserAgent

Thanks for the info, we will need to do some evaluation on this UA before we add it to make sure that it will not cause mis-matches from other devices. I'm not sure if there is a Tesla dealership in the DC area, but maybe it's a good time to take a Tesla-WURFL test drive :) We'll get the data added ...
by kamermans
Tue Jun 04, 2013 11:33 pm
Forum: ScientiaMobile WURFL Cloud Service
Topic: "Low-Fi" Version of Cloud Capabilities Page?
Replies: 3
Views: 7234

Re: "Low-Fi" Version of Cloud Capabilities Page?

I do see your point that this page could be improved, but I can assure you that our time was spent on our infrastructure and underlying code, and I think that was a more important investment. We do, of course, want to provide the best experience that we can, as is evident by our recently redesigned ...
by kamermans
Tue Jun 04, 2013 4:33 pm
Forum: PHP API
Topic: Should wurfl.zip extract every time??
Replies: 16
Views: 96615

Re: Should wurfl.zip extract every time??

I've got a fix ready for you - I will PM it to your account later tonight once I've created the package.
by kamermans
Tue Jun 04, 2013 11:14 am
Forum: PHP API
Topic: Should wurfl.zip extract every time??
Replies: 16
Views: 96615

Re: Should wurfl.zip extract every time??

Hi Keith,

Sorry about the delay. I've found an issue with the Memcache adapter and I'm working on a solution.
by kamermans
Tue Jun 04, 2013 2:24 am
Forum: ScientiaMobile WURFL Cloud Service
Topic: all capabilites are open on wurfl cloud service?
Replies: 1
Views: 5566

Re: all capabilites are open on wurfl cloud service?

Hi Yoab,

There aren't any known issues with this feature, and it is working fine from Chrome on my machine. What browser are you using? Also, what if you type "streaming" in the search box at the top?
by kamermans
Mon Jun 03, 2013 8:10 pm
Forum: ScientiaMobile WURFL Cloud Service
Topic: "Low-Fi" Version of Cloud Capabilities Page?
Replies: 3
Views: 7234

Re: "Low-Fi" Version of Cloud Capabilities Page?

Sorry about the trouble, but we do not have plans for a low-end version of this page since it is unlikely that you will need to visit often. Once your capabilities are selected you should be all set.
by kamermans
Mon Jun 03, 2013 2:53 pm
Forum: PHP API
Topic: Should wurfl.zip extract every time??
Replies: 16
Views: 96615

Re: Should wurfl.zip extract every time??

Ok, thanks for the config, I'll take a look at it. Are you using Amazon ElastiCache, or an actual Memcached installation on an Amazon VM, and is the Memcached host the same as your webserver, or is it a different host altogether?
by kamermans
Fri May 31, 2013 3:54 pm
Forum: PHP API
Topic: Should wurfl.zip extract every time??
Replies: 16
Views: 96615

Re: Should wurfl.zip extract every time??

Thanks for the update. Can you post your complete configuration please? I will try to reproduce it on our side, as this is not the expected behavior.