4577 Posts in 1388 Topics by 1377 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 332 Views |
-
User agent string containing "+" - _ss_enviroment.php

5 October 2011 at 7:10pm
Hi,
I'm just wondering what is the purpose of the condition in "An Example" checking if the user agent string contains the "+" sign?
It's in line 16 of the code...
if(isset($_SERVER['REMOTE_ADDR']) && ($_SERVER['REMOTE_ADDR'] == '127.0.0.1' || ($_SERVER['REMOTE_ADDR'] == '<MyIP>'
&& strpos($_SERVER['HTTP_USER_AGENT'], '+') !== false)))
define('SS_ENVIRONMENT_TYPE', 'dev');
else
define('SS_ENVIRONMENT_TYPE', 'live');Thanks very much,
VWD. -
Re: User agent string containing "+" - _ss_enviroment.php

5 October 2011 at 7:54pm
That check was so I was put into dev mode while other people, including those from the same IP as me, weren't. As I was using a custom WebKit build, there was a + in the user agent that any normal browser wouldn't have.
-
Re: User agent string containing "+" - _ss_enviroment.php

5 October 2011 at 10:03pm
Great - thanks for that explanation Simon.
VWD.
| 332 Views | ||
|
Page:
1
|
Go to Top |

