]> git.immae.eu Git - github/shaarli/Shaarli.git/commitdiff
index.html: add warning message about hostname/cookie storage problems 39/head
authornodiscc <nodiscc@gmail.com>
Mon, 3 Nov 2014 12:21:14 +0000 (13:21 +0100)
committernodiscc <nodiscc@gmail.com>
Mon, 3 Nov 2014 12:21:14 +0000 (13:21 +0100)
 * Fixes https://github.com/sebsauvage/Shaarli/issues/196
 * Fixes https://github.com/sebsauvage/Shaarli/issues/97

index.php

index 019311985f113a58fdafd3bf9199241b7e9127f3..06e5b7845a9407baf5ba8c286543d801ec43c13d 100644 (file)
--- a/index.php
+++ b/index.php
@@ -2067,7 +2067,9 @@ function install()
     {   // Step 2: Check if data in session is correct.
         echo '<pre>Sessions do not seem to work correctly on your server.<br>';
         echo 'Make sure the variable session.save_path is set correctly in your php config, and that you have write access to it.<br>';
-        echo 'It currently points to '.session_save_path().'<br><br><a href="?">Click to try again.</a></pre>';
+        echo 'It currently points to '.session_save_path().'<br>';
+        echo 'Check that the hostname used to access Shaarli contains a dot. On some browsers, accessing your server via a hostname like \'localhost\' or any custom hostname without a dot causes cookie storage to fail. We recommend accessing your server via it\'s IP address or Fully Qualified Domain Name.<br>';
+        echo '<br><a href="?">Click to try again.</a></pre>';
         die;
     }
     if (!isset($_SESSION['session_tested']))