Search found 5 matches
- Wed Jun 22, 2011 3:39 pm
- Forum: General discussions
- Topic: SSO Windows HTTP auth
- Replies: 9
- Views: 7316
Re: SSO Windows HTTP auth
Cool! I will do once I get it working behind the reverse proxy... So maybe tomorrow.
- Wed Jun 22, 2011 2:10 pm
- Forum: General discussions
- Topic: SSO Windows HTTP auth
- Replies: 9
- Views: 7316
Re: SSO Windows HTTP auth
Ok, I managed to do what I want by hacking around. It's not beautiful...
Changes in index.php:
$faqusername = PMF_Filter::filterInput(INPUT_POST, 'faqusername', FILTER_SANITIZE_STRING);
$faqpassword = PMF_Filter::filterInput(INPUT_POST, 'faqpassword', FILTER_SANITIZE_STRING);
/* added for SSO ...
Changes in index.php:
$faqusername = PMF_Filter::filterInput(INPUT_POST, 'faqusername', FILTER_SANITIZE_STRING);
$faqpassword = PMF_Filter::filterInput(INPUT_POST, 'faqpassword', FILTER_SANITIZE_STRING);
/* added for SSO ...
- Wed Jun 22, 2011 1:50 pm
- Forum: General discussions
- Topic: SSO Windows HTTP auth
- Replies: 9
- Views: 7316
Re: SSO Windows HTTP auth
That was quick.
But it can't work, can it? checkPassword only gets called when there's faqPassword set? I don't want users to have to login... And it doesn't get the user information from LDAP, right?
But it can't work, can it? checkPassword only gets called when there's faqPassword set? I don't want users to have to login... And it doesn't get the user information from LDAP, right?
- Wed Jun 22, 2011 12:58 pm
- Forum: General discussions
- Topic: SSO Windows HTTP auth
- Replies: 9
- Views: 7316
Re: SSO Windows HTTP auth
Aww... Then I'll try digging into the source a bit more. It should be possible for me to help, I think. 
- Wed Jun 22, 2011 12:35 pm
- Forum: General discussions
- Topic: SSO Windows HTTP auth
- Replies: 9
- Views: 7316
SSO Windows HTTP auth
Hi,
the LDAP plugin worked, and now I wanted to setup SSO using apache mod_sspi. This sets REMOTE_USER to the correct domain\user, and now I want PMF to acknowledge that. I've tried looking at inc/PMF_Auth/AuthHTTP, but that wants to check a password, which I won't have.
Is there a way to tell ...
the LDAP plugin worked, and now I wanted to setup SSO using apache mod_sspi. This sets REMOTE_USER to the correct domain\user, and now I want PMF to acknowledge that. I've tried looking at inc/PMF_Auth/AuthHTTP, but that wants to check a password, which I won't have.
Is there a way to tell ...