Implementation issues with SSO
Let me preface this by saying I’m a beginner in a PHP environment so there may be a simple answer here. We’re trying to use phpCAS to connect to our university’s CAS server.Our server has been set up...
View ArticleCross Domain Single Selective Sign In
Its not explicitly cross domain sessions that I am looking for, but its the easiest way to explain what it is I want.I have a system which creates websites. The websites are hosted across lots of...
View ArticleCross Domain Single Selective Sign In
Its not explicitly cross domain sessions that I am looking for, but its the easiest way to explain what it is I want.I have a system which creates websites. The websites are hosted across lots of...
View ArticleSecurely passing users between two sites
I have my site ‘A’. I will have a business contract with site ‘B’ to enable users of site ‘B’ (there will be many such sites) to redirect their users to my site when the users do one of many ‘A’...
View ArticleSingle Sign-on or login via in PHP
Which is the simplest and best free tool(php) that provides “single sign-on” i.e login via many sites.It should provide me basic details of users like name dob, location etc. It should be completely...
View ArticleTransfer Session Data Between Apache Virtual Hosts
How do I pass PHP session data from one Apache virtual host to another? I am currently running Apache 2.2.17 and PHP 5.3.3 and I’ve set up one host to manage a single sign-on application and I need to...
View ArticlePHP SSO for ASP service
function SSO($key,$uid){$lenth=32;$aZ09 = array_merge(range(‘A’, ‘Z’), range(‘a’, ‘z’),range(0, 9));$randphrase =”; for($c=0;$c < $lenth;$c++) { $randphrase .= $aZ09[mt_rand(0,count($aZ09)-1)]; }...
View Article