Topic: SSO
Hi,
I have LuxCal installed on an internal site, and it's great! Thanks very much for providing this package.
A minor problem: I'm unable to get the Single-Sign-On part of Luxcal working. I have a simple test php page with:
-----
<?php
session_name('PHPSESSID');
session_start();
$_SESSION['lcUser'] = 'joe';
echo "Logged in as ", $_SESSION['lcUser'];
echo "
<iframe id=\"luxcal\" src=\"/test/luxcal/?cP=2\"></iframe>
<P>
";
?>
-----
and on the webpage I see:
'Logged in as joe'
but the calendar still has the 'Log in' button, and requires logging in to make any changes.
What am I missing? Any suggestions would be much appreciated.