Plugins won’t activate
-
No plugins want to activate from the plugins page. The message “Plugin activated” is displayed, but nothing really happens. When WPPP is not active they activate just fine. The culprit seems with the firing of the
plugin_load_first()
function. Tried various things and what finally worked for me was changing the hook fromwp_loaded
to the latest possible one:wp_dashboard_setup
, according this reference. Most tests were performed with Autoptimize (de)activation.wp-performance-pack.php
~line 271 modified like this:add_action( 'wp_dashboard_setup', array( $this, 'plugin_load_first' ) );
The issue was happening on a Linux VPS. Interestingly, I don’t have the issue with a local copy of that same website on WAMP.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Plugins won’t activate’ is closed to new replies.