View Single Post
ginggs's Avatar
Posts: 306 | Thanked: 582 times | Joined on Mar 2012
#14
I set up a local apache2/php5 web server with the following in /var/www/html/index.php:
Code:
<?php
$headers = apache_request_headers();

if(isset($headers['X-Nokia-WLAN-Connectivity-Test']))
{
    header('X-Nokia-WLAN-Connectivity-Test: true');
    exit();
}
?>
I made a slight change to the header() call.

After adding connectivity-test.ext.nokia.com to /etc/hosts on my N9, I could see the 'X-Nokia-WLAN-Connectivity-Test: true' header in the server's response to the wget command. However, the web browser still pops up http://connectivity-test.ext.nokia.com and changes the connection to Manually used when connecting.