2011-06-25, 00:59:44
RobA Wrote:mvlcek Wrote:A workaround for the cookie problem in 3.0 can be found here.
As far as I can tell, that only works in the back end.
It works when calling php-files in the plugins folder.
It works when calling this test file in the root of the installation:
Code:
<?php
include('gsconfig.php');
$admin = defined('GSADMIN') ? GSADMIN : 'admin';
include("${admin}/inc/common.php");
$loggedin = cookie_check();
if (!$loggedin) die("Not logged in!");
echo "LOGGED IN!";