#817: sp/module.php references a file that no longer exists #827
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This is a fix for #817. We have a client that, after updating auth_saml2 to the latest version available on the plugin directory for 4.3, was receiving the following error:
The www/module.php file no longer exists in the included version of simplesamlphp, and as discovered by the issue filer, has been replaced by public/module.php. After replacing the reference in sp/module.php, we received a new error:
It appeared that the simplesamlphp library was looking for a "tempdir" config setting, which wasn't included in config/config.php. After adding said value, the login flow was working again. We set the value to
/tmp/simplesaml
, but there may be a better default.