Hi i have set the browsecap path correctly in my wamp php.ini, but i keep on getting `
Warning: get_browser(): browscap ini directive not set
then i print a phpinfo() it shows that browsecap does not have local or master value,
but i configured php.ini as follows
[browscap] ; http://php.net/browscap
browscap = "C:\wamp\bin\php\full_php_browscap.ini"
Ok there are a couple of obvious possibilities.
First you should use the UNIX directory seperator and not the DOS seperator. Remember this is PHP and a
\
in double quoted string literals is an escape character.So first try
Secondly, and this is the most likely issue, there are 2 php.ini files in the
\wamp\bin\php\{phpversion}\
folder, one calledMake sure you have updated phpForApache.ini.
If you use the WAMPServer menus like so
wampmanager->PHP->php.ini
it will automatically open the correct file for editing. I would guess this is what you have done wrong.