I have this line
I've been waiting a bit to answer in order to leave cookies go away, so I won't get spoiled by them.
Here's what is going on now, with this code :
PHP Code:
define('THIS_SCRIPT', 'test01');
chdir ('./forum');
require_once ('./global.php');
chdir ('..');
echo "Test page<br />";
echo "#".$_SERVER['SCRIPT_URL']."#";
echo "<br />";
echo "#".$_SERVER['REQUEST_URI']."#";
This test page is located one directory below the vb one (hence the chdir())
On the ISP side, I get :
HTML Code:
Test page
#/test01.php#
#/test01.php#
And nothing in the session table.
On local side :
HTML Code:
Test page
##
#/test01.php#
and /test01.php in the location field of the session table.
Both environment are not giving the same results, as you can see