Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

single sign on - exception happen on the callback of sso in moodle

I am trying to implement SSO in moodle, and it works but on the callback after the user login I got the following exception

enter image description here

Here is the code that found in the mentioned file

require_once(__DIR__ . '/../../../config.php');
require('../setup.php');

// First setup the PATH_INFO because that's how SSP rolls.
$_SERVER['PATH_INFO'] = '/' . $saml2auth->spname;

try {
    require($CFG->dirroot.'/auth/saml2/extlib/simplesamlphp/modules/saml/www/sp/saml2-acs.php');
} catch (Exception $e) {
    throw new saml2_exception($e->getMessage(), $e->getTraceAsString());
}
question from:https://stackoverflow.com/questions/65644437/exception-happen-on-the-callback-of-sso-in-moodle

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...