Just to confirm, you’re running WordPress 4.8.1, right? When you visit your plugins page and click activate, does nothing at all happen?
You can log PHP errors to a file called debug.log
in your wp-content
folder by adding the following lines to your wp-config.php
file:
define( 'WP_DEBUG', true );
define( 'WP_DEBUG_DISPLAY', false );
define( 'WP_DEBUG_LOG', true );
If you try to activate it again, you can check the contents of that file to see if there’s any errors. Just make sure to remove the above lines and delete the file when done.
-
This reply was modified 7 years, 5 months ago by
viper007bond.