While trying to install plugins in wordpress site, I get the following error
Unpacking the packageâ¦
Installing the pluginâ¦
The package could not be installed. No valid plugins were found.
Plugin install failed.
While trying to install plugins in wordpress site, I get the following error
Unpacking the packageâ¦
Installing the pluginâ¦
The package could not be installed. No valid plugins were found.
Plugin install failed.
You must be logged in to post a comment.
If you have access to the cPanel, try this:
marked âwp-contentâ
should see your new plugin as one of the selections. )
The above steps are explained assuming your hosting is With HostGator. The steps are similar for other hostings also.
Cheers !!!
It seems you have put wrong folder/file.
wordpress only get realized that there is a plugin when it can get a php file which header contain at lease this line
/*
Plugin name: your plugin name
*/
So, you have to check..
check this first and let us know if it works or not
One of my co-workers figured this out.
Check your wp-config.php and look for these lines:
define(‘FS_CHMOD_DIR’, ‘02775’);
define(‘FS_CHMOD_FILE’, ‘0664’);
Note that the values 02775 and 0664 are encased in quotes and so PHP interprets as strings.
They are numeric values and should not be contained within quotes.