1049080df5
Advantages: * Increases security by preventing direct access to file/ * We are careful and have a defined('GNUSOCIAL') || die() to prevent direct access to GS files, but we may miss one or a vendor/extlib may not be as careful * Improves directory structure - It's more natural to physically separate what is public from what are GNU social resources |
||
---|---|---|
.. | ||
actions | ||
classes | ||
doc-src | ||
extlib | ||
lib | ||
locale | ||
openid.php | ||
OpenIDPlugin.php | ||
README |
The OpenID plugin allows users to use OpenID to login. See: http://openid.net/ Installation ============ This plugin is enabled by default Settings ======== openidonly: Whether we only allow logins through OpenID. trusted_provider: URL to the OpenID provider. append_username: Whether to append the username at the end of the OpenID URL Example ======= $config['site']['openidonly'] = true; $config['openid']['trusted_provider'] = "http://example.org"; $config['openid']['append_username'] = true; addPlugin('OpenID');