The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
28 views

Alternative to Browscap

I've been using Browscap in one of my opensource projects (a URL shortener if anyone's interested) for quite a while now and after updating it to the latest version I realized that it hasn't changed ...
0
votes
2answers
49 views

Getting illegal characters in get_browser() method run in php

From the manuals I am running a simple code to fetch browser info using get_browser() method. Code in the manuals - Code I am running(almost same/i tried by removing echo "<pre>"; but no ...
0
votes
2answers
73 views

How can I add more entry to browscap.ini file?

The official browscap.ini files provided there works quite fine, but they can not seem to identify Opera running on Win8 (identified as 'Default Browser', Opera running on other versions of Windows ...
0
votes
0answers
14 views

How to set BROWSCAP inline in index.php? [duplicate]

I need to use the browscap option in a php file, inline; I dont have access to php.ini file. Can it be done? And how?
0
votes
1answer
177 views

PHP Installing browscap

I can't get get_browser() to work. I followed this tutorial about installing browscap : http://code18.blogspot.fr/2009/07/installer-browscapini-pour-php.html But it didn't work for me. When i display ...
0
votes
2answers
2k views

Browscap.ini missing

I'm new to PHP, I'm leraning on my own and I'm trying to use the get_browser() function, but I checked in my phpinfo() and it seems I don't have it, because it says "no value". Could you please help ...
0
votes
1answer
2k views

How should I be setting browscap.ini file [duplicate]

Possible Duplicate: Change to php.ini does not have effect I downloaded the browscap.ini file and then pasted it to the directory "C:\wamp\bin\php\php5.4.3\extras" and i went to php.ini ...
1
vote
2answers
472 views

get_browser slowing down page load, any alternative?

I have used PHP's get_browser function for quite some time now and have never really noticed any lag on any of my websites. However, recently I noticed that one of my sites was taking a second or so ...
3
votes
1answer
244 views

Apache PHP HTTP_USER_AGENT and get_browser returning incorrect values

I am developing a corporate website for my HSC Software Design and Development Major Project. I have a section of code to check if the user's browser was supported in a MySQL database and, if not, ...
7
votes
3answers
1k views

get_browser() returns FALSE

- Running PHP 5.3.8 on Linux- To start, we have solved this issue to the point where the function returns the expected values. However there are still a lot of unanswered questions I've got, and the ...
0
votes
1answer
135 views

Detecting Browser/OS Info using a Browscap File

For the past few years I have been using Gary Keith's browscap file to extract browser and OS information from the HTTP request. This method works absolutely fantastically, as long as the file is kept ...
0
votes
4answers
1k views

Changing PHP.ini using htaccess on a Server

I am trying to use PHP's built-in function get_browser(). I followed the instructions in this useful post, but I'm still getting the error browscap ini directive not set. I downloaded the ...
0
votes
1answer
193 views

Access PHP Browscap outside web directory FastCGI

I am looking at enabling FastCGI to handle PHP execution on all of my domains. I tried it the other day and ran into one problem with my PHP configuration. I currently have a php-browscap.ini located ...
0
votes
1answer
319 views

User agent: PHP parsing, browscap and nonconventional “browsers”

I am looking for a reliable way to find out what user agent is requesting my PHP page(s). I'm aware of get_browser as well as $_SERVER['HTTP_USER_AGENT'] but neither seems to be reliable. With ...
8
votes
1answer
2k views

Browscap.ini throwing an error when loading PHP (command line - PHP_CLI)

I have a cronjob that summarize browser statistics. This cronjob loads data and then use the get_browser() PHP function to parse the browser information. Here's what I did: cd /etc/php5/cli/conf.d ...
2
votes
2answers
3k views

Setting Up browscap for PHP

I have just tried enabling php_browscap.ini so that I can use the get_browser function. However, it seems to display an empty array? $user_agent = get_browser(null, true); print_r($user_agent); ...
3
votes
5answers
300 views

How to determine the browser of the user using PHP?

How to determine the browser of the user using PHP? So that if the users browser is IE then the variable $alert="onbeforeunload" and if it is not IE, for example Firefox (else) then $alert="onload. ...
7
votes
2answers
4k views

PHP: Using browscap.ini on shared host. - ini_set() failing

I'm trying to use get_browser() , unfortunately my page is on a shared host, and I have no access to php.ini. I have downloaded the latest version of browscap.ini and placed in my document root. I ...
13
votes
2answers
23k views

browscap ini directive not set

I'm using the get_browser() function in an attempt to warn people that their browser doesn't support Javascript. Actually I'm using it to tell them they can use certain parts of a web application I'm ...
1
vote
2answers
359 views

Browscap For Python

I was looking around, and couldn't find the Python equivalent of browscap (that I've used in PHP to detect what browser a given user-agent string is. I'm hoping I'm not going to have to write my ...