This came up on the WordPress plugin support forum: https://wordpress.org/support/topic/sibboleth-installation-internal-server-error/
It's fair to say that we do expect people to install the mod_shib package before installing our plugin, but it might also be good to not take their site offline. In that ticket, I suggest wrapping the Shibboleth configuration directives in an IfModule block, as in:
<IfModule mod_shib>
AuthType shibboleth
Require shibboleth
</IfModule>
Is this something that we would be interested in adding to the core plugin? If so, I'd be happy to create a pull request.
This came up on the WordPress plugin support forum: https://wordpress.org/support/topic/sibboleth-installation-internal-server-error/
It's fair to say that we do expect people to install the mod_shib package before installing our plugin, but it might also be good to not take their site offline. In that ticket, I suggest wrapping the Shibboleth configuration directives in an
IfModuleblock, as in:Is this something that we would be interested in adding to the core plugin? If so, I'd be happy to create a pull request.