Skip to content
Advertisement

How should I be setting browscap.ini file

I downloaded the browscap.ini file and then pasted it to the directory “C:wampbinphpphp5.4.3extras” and i went to php.ini file and made these changes there:

[browscap]
; http://php.net/browscap
browscap = extras/browscap.ini

and then i restarted the server, and typed the following code into temp.php file:

<?php
echo $_SERVER['HTTP_USER_AGENT'] . "<br><br>";

$browser = get_browser(null, true);
print_r($browser);
?>

now the output is like:

Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.79 Safari/537.4

Warning: get_browser(): browscap ini directive not set in C:wampwwwfunctionsbrowser.php on line 4

am i missing something? please provide some solution, and sorry if i am unable to make you understand

Advertisement

Answer

You are to use the Full PATH and restart your server when you are done

Example

[browscap]
; http://php.net/browscap
browscap = "C:xamppphpextrasbrowscap.ini"
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement