WPIntell

Source evidence

Support for WP 5.2.4

Multisite Plugin Manager 路 support 路 2019-10-18T22:16:00+00:00

complaintsentiment
highseverity
1.0relevance
4replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

5 / 35 rows with source links

14.3% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

30 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
Dan Gehant unresolved
Saw that this is only supported up through 4.9.1 Are there any plans to support the newest WP version? Thanks! Dan We have it running fine on WP 5.2.4. Just don鈥檛 be fooled by the static meta information on the wordpress.org plugin page which only gets updated with a new plugin release 馃檪 Best, Jan Would it be possible to get it tested for the latest release? I start getting all kind of warnings now and it鈥檚 really annoying, when the plugin works perfectly fine. @janthiel Are you still using this plugin? Mass deactivation works fine, but mass activation is failing for me. At least for WP Rocket. This is in my errorlog: PHP Notice: Constant WP_ROCKET_PLUGIN_NAME already defined in /www/htdocs/xxx/yyy/wp/wp-content/plugins/wp-rocket/inc/main.php on line 180 PHP Notice: Constant WP_ROCKET_PLUGIN_SLUG already defined in /www/htdocs/xxx/yyy/wp/wp-content/plugins/wp-rocket/inc/main.php on line 181 PHP Fatal error: Cannot redeclare get_rocket_option() (previously declared in /www/htdocs/xxx/yyy/wp/wp-content/plugins/wp-rocket/inc/functions/options.php:18) in /www/htdocs/xxx/yyy/wp/wp-content/plugins/wp-rocket/inc/functions/options.php on line 23 Any help is much appreciated! Or do anyone know an alternative plugin for multisite mass activation for plugins? All the best Torsten @zodiac1978 Never tried Mass-Activate before with WP-Rocket. Anyway, I just did: I do have the same error on our test servers if I try Mass-Activate with WP-Rocket. So it seems WP-Rocket and this Plugin doesn鈥檛 work well together. Although never had issues with other plugins to Mass-Activate or Deactivate. Why don鈥檛 you use WP-CLI? It allows you quite easily to do what you want. Just create a bash script and use something like this: You might need to replace the calls to wp with a whole path to the WP-CLI executable. #!/bin/bash PLUGINS_TO_ACTIVATE="hellodolly antispambee" for SITE_URL in $(wp site list --fields=domain,path,archived,deleted --format=csv | grep ",0,0$" | awk -F ',' '{print $1 $2}') do echo "[$SITE_URL] Activate Plugins: $PLUGINS_TO_ACTIVATE" wp plugin activate $PLUGINS_TO_ACTIVATE--url="$SITE_URL" echo "[$SITE_URL] done!" done This reply was modified 6 years ago by janthiel .

Comments

4 shown
janthiel 2019-10-22T09:10:00+00:00

We have it running fine on WP 5.2.4. Just don鈥檛 be fooled by the static meta information on the wordpress.org plugin page which only gets updated with a new plugin release 馃檪 Best, Jan

Morten Ellegaard Larsen 2020-03-19T10:32:00+00:00

Would it be possible to get it tested for the latest release? I start getting all kind of warnings now and it鈥檚 really annoying, when the plugin works perfectly fine.

Torsten Landsiedel 2020-05-28T14:36:00+00:00

@janthiel Are you still using this plugin? Mass deactivation works fine, but mass activation is failing for me. At least for WP Rocket. This is in my errorlog: PHP Notice: Constant WP_ROCKET_PLUGIN_NAME already defined in /www/htdocs/xxx/yyy/wp/wp-content/plugins/wp-rocket/inc/main.php on line 180 PHP Notice: Constant WP_ROCKET_PLUGIN_SLUG already defined in /www/htdocs/xxx/yyy/wp/wp-content/plugins/wp-rocket/inc/main.php on line 181 PHP Fatal error: Cannot redeclare get_rocket_option() (previously declared in /www/htdocs/xxx/yyy/wp/wp-content/plugins/wp-rocket/inc/functions/options.php:18) in /www/htdocs/xxx/yyy/wp/wp-content/plugins/wp-rocket/inc/functions/options.php on line 23 Any help is much appreciated! Or do anyone know an alternative plugin for multisite mass activation for plugins? All the best Torsten

janthiel 2020-05-29T10:56:00+00:00

@zodiac1978 Never tried Mass-Activate before with WP-Rocket. Anyway, I just did: I do have the same error on our test servers if I try Mass-Activate with WP-Rocket. So it seems WP-Rocket and this Plugin doesn鈥檛 work well together. Although never had issues with other plugins to Mass-Activate or Deactivate. Why don鈥檛 you use WP-CLI? It allows you quite easily to do what you want. Just create a bash script and use something like this: You might need to replace the calls to wp with a whole path to the WP-CLI executable. #!/bin/bash PLUGINS_TO_ACTIVATE="hellodolly antispambee" for SITE_URL in $(wp site list --fields=domain,path,archived,deleted --format=csv | grep ",0,0$" | awk -F ',' '{print $1 $2}') do echo "[$SITE_URL] Activate Plugins: $PLUGINS_TO_ACTIVATE" wp plugin activate $PLUGINS_TO_ACTIVATE--url="$SITE_URL" echo "[$SITE_URL] done!" done This reply was modified 6 years ago by janthiel .