Current time: 11-28-2024, 12:27 AM Hello There, Guest! (LoginRegister)


Thread Closed 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[ERLEDIGT]FCGI + HTTP Authorization
Author Message
joximu Offline
helper
*****
Moderators

Posts: 7,024
Joined: Jan 2007
Reputation: 92
Post: #2
RE: FCGI + HTTP Authorization
Hi...

also, das ".php{PHP_VERSION}" ist wohl nicht Sinn und Zweck... - in den Config-Dateien sollten keine {...} mehr vorkommen...

aber zum Eigentlichen. Ich weiss nicht, wie's mit fcgid geht, aber mit fastcgi geht's so:

in der ispcp_fastcgi.conf das zum "FastCgiConfig" dazu:
-pass-header Authorization

und dann im PHP das vor die bestehende Abfrage setzen:

Code:
if (isset($_SERVER['Authorization']) && !empty($_SERVER['Authorization'])) {
    list ($type, $cred) = split (' ', $_SERVER['Authorization']);

    if ($type == 'Basic')   {
        list ($user, $pass) = explode (':', base64_decode($cred));
        $_SERVER['PHP_AUTH_USER'] = $user;
        $_SERVER['PHP_AUTH_PW'] = $pass;
    }
}

dh. es muss die Variable $_SERVER['Authorization'] genauer zerlegt werden...

Ich denke, ähnlich dürfte es auch mit fcgid sein.

Gruss Joxi
01-19-2010 01:33 AM
Visit this user's website Find all posts by this user
Thread Closed 


Messages In This Thread
[ERLEDIGT]FCGI + HTTP Authorization - k4ci - 01-19-2010, 01:09 AM
RE: FCGI + HTTP Authorization - joximu - 01-19-2010 01:33 AM
RE: FCGI + HTTP Authorization - k4ci - 01-19-2010, 01:39 AM
RE: FCGI + HTTP Authorization - joximu - 01-19-2010, 09:03 AM

Forum Jump:


User(s) browsing this thread: 1 Guest(s)