jdelsemme
Forum Replies Created
-
Here is an update. The whitelisted URL rules (set up in learning mode) were all manually disabled when we switched to “Enabled and Protected” mode. But somehow they have been re-enabled. Where are those rules kept? If they are kept in the file system in
wflogs, then the disabling will only occurs on one of the two load balanced web servers (whichever I happen to be connected to), and this would explain the behavior I see. However in they are kept in the joint database, then I should not see this behavior: do you know what could cause this?I’ve tried your fix on our test server, and it does what it is supposed to (thanks!). I still have 2 concerns though:
1. In a load balanced scenario, you end up with a differentwflogsdirectory on each server with possibly different contents. Does it matter? What information does thewflogsdirectory store?
2. When the Wordfence plugin is updated, will the filewordfence-waf.phpbe updated, and clobber the fix?Thanks, I’ll try this. In production we have 2 load balanced web servers which share a common NFS mounted storage. Would having separate wflogs directories in each local file system with mismatched content matter?
Thanks, I’ll do that for now. But consider it a request that it would be nice to be able to add multiple IPs, or even a range of IPs rather than be limited to one.
Forum: Plugins
In reply to: [Shibboleth] Shibboleth options on multisite WordPress installationI’ve tried it on one multisite, and the shib menu now appears in the correct place. Thank you!
Forum: Networking WordPress
In reply to: Shibboleth Plugin – all site admins can edit global settings?For more discussion about this topic, see http://wordpress.org/support/topic/shibboleth-options-on-multisite-wordpress-installation, and a possible temporary solution (although ideally the developers will update their plugin).
Forum: Plugins
In reply to: [Shibboleth] Shibboleth options on multisite WordPress installationWe are facing the same problem here at UCSC. We would like to use shibboleth with multisites, but want to restrict changing the shibboleth settings to the network admin. I found this possible solution:
http://wordpress.org/support/topic/shibboleth-plugin-needs-maintenance-help
which seems to work, but I’m not a WordPress plugin developer, and would like confirmation that this is something reasonable to do until the developers fix this problem.Here is a diff of the file
wp-content/plugins/shibboleth/options-admin.phpto modify:5,12c5 < // begin changes < //add_action('admin_menu', 'shibboleth_admin_panels'); < add_action( 'network_admin_menu', 'shibboleth_network' ); < function shibboleth_network() { < $hookname = add_submenu_page('settings.php', __('Shibboleth Options', 'shibboleth'), < __('Shibboleth', 'shibboleth'), 8, 'shibboleth-options', 'shibboleth_options_page' ); < } < // end of changes --- > add_action('admin_menu', 'shibboleth_admin_panels');