- Issue created by @KenKodz
- πΊπΈUnited States KenKodz
I think I found the root cause.
SimplesamlphpAuthManager.php::checkLibrary()
loads the instance's/lib/_autoload.php
. However, that file is blank.This may mean that SimpleSamlPhp v2.1.1 is broken somewhere, but I haven't dug that far yet.
I can say that if you replace line 342 of
SimplesamlphpAuthManager.php
like below, everything seems to work properly in this module.Old
include_once $dir . '/lib/_autoload.php';
New
include_once $dir . '/vendor/autoload.php';
- πΊπΈUnited States KenKodz
After looking at the SimpleSamlPhp Slack, and then at the files in the download, it appears that this is an issue with extracting the files in Windows and it not creating the symlink for
src/_autoload.php
tolib/_autoload.php
.I hope this at least helps someone else in the future (most likely me). LOL
- Status changed to Closed: works as designed
over 1 year ago 9:02pm 1 December 2023