Plugin not showing in dashboard

I’ve seen many other related questions, but all of them are resolved with just adding the name format at the top of the plugin main PHP file, and/or manually downloading and extracting the plugin, but none of those answers worked for me.

I’m talking about the WordPress Users Plugin. After downloading and extracting it in wp-content/plugins/ directory, I can’t find it in the dashboard list.

Read More

I’ve checked that the main file (wp-users.php) is placed at the main path, and it starts with the plugin name:

<?php
/*
Plugin Name: WordPress Users
Plugin URI: http://kempwire.com/wordpress-users-plugin
...

I’m confused about what can be happening. Any idea?

Related posts

Leave a Reply

2 comments

  1. If the plugin headers are correct, then the only option that comes to my mind is that the owner and permissions of the plugin file or its directory (if it is in one) are incorrect and WordPress cannot read the plugin file. Other than simply being logically important, if you check the source you can see that the Core specifically checks whether the plugin files are readable.

    See the following for the appropriate settings:
    http://codex.wordpress.org/Changing_File_Permissions
    http://codex.wordpress.org/Hardening_WordPress
    https://wordpress.stackexchange.com/a/96454/21376

  2. Check the permissions on the files within the plugin directory, starting with the main php file. At a minimum the permissions should be 0644 for WordPress to read the file.