WordPress Updated: "Plugin not found" message when check for changelog - wordpress

Recently I am seeing often (not always) this message when there is a plugin update and I click to the new version link to see the changelog:
Wordpress update message
I can't figure out why. Any ideas?
Thanks

Related

Wordpress plugin is not working after migration to a new server

I have moved my wordpress site to a new server, and login.php is working right.
But in there many plugins is not working well, for example the login page is not linked to any other page after I submitted my username and password.
Here is the login page link:
https://cpalocate.ca/login/
I have entered the invalid username and password, it will also show the blank page, but not error page.
When I add this code in wp-config.php
define('WP_DEBUG', true);
it showed this text. " Notice: Constant WYZ_THEME_DIR already defined in /home/.....".
And I have fixed that, but the same problem.
Now there is no any error debug, but the login page is also not working.
I changed the php version of my site in cpanel, but the same.
Anyone has your idea to solve this issue?
It is possible (I'd even say likely) that on your old server it was using PHP 5.6 (or at least a different version of PHP than your new server) and now you're on 7.0, 7.2 or even 7.3. It would seem that if that's the case, some of your plugins are incompatible.
You should edit your wp-config.php and add
define('WP_DEBUG', true);
so that you can see the errors on your screen, at least until you figure out which plugins are causing the problems.
If it is a matter of PHP version, check with your host to see if they can roll you back, or you'll have to either contact the plugin author and have them update the plugins, or you need to fix the code yourself, based on whatever the error messages you see are.
Edit: if this doesn't solve your problem, first try a default WordPress theme like twenty-nineteen or whatever. If that doesn't solve it, then disable each plugin one at a time until you find the culprit.
I have turned off all my plugins and turn back it one by one.
I have found one of my plugins is caused this problem, it is PM Pro Settings.
So I deactivated it and there is no any problem now.
I am using other plugins on behalf of that one.

Woocommerce force update database stucked

After we upgraded woocommerce to the latest version (3.4.4), the message keeps appearing
“WooCommerce data update – Your database is being updated in the background. Taking a while? Click here to run it now.”
When we clicked on the ‘Click here to run it now’, it shows a HTTP 500 error and when we reload the page, it shows the woocommerce general setting page.
I looked at the debug report and its says:
"
PHP Fatal error: Call to a member function remove_cap() on null in /home/artgrain/public_html/wp-content/plugins/woocommerce/includes/wc-update-functions.php on line 1367
"
Does anyone knows how to fix this issue? I have someone told me it is my theme outdated but when I deactivated all plugins and theme to install twenty-seventeen only, this error still persists.
I appreciate your help, thank you very much!

Why I am redirected to different plugin page url after activating any other plugins in wordpress?

Plese help me figure out this bug.
Problem:
I had installed a syntax highlighter plugin named "Enlighter". But it didn't work as I expected. So I went ahead and deactivated and deleted the plugin files.
Now the problem is that whenever I am trying to activate any other plugins it is redirecting me to the "enlighter" about page. Here's what my url looks when I try to activate any plugins: http://localhost/wp/wp-admin/admin.php?page=Enlighter-About
When I tried to activate TinyMCE Advanced Plugin it is redirected to the above-mentioned URL. You can read the error message in the screenshot attached. However, when I press the back button I can see the "TinyMCE" plugin activated.
I want to know how to fix the problem so that it is redirected to its relevant plugin page instead of enlighter's plugin page.
Thank you!
Okay, So after sharing this problem with "englighter's" plugin developer on the WordPress forum he asked me to clear the browser cache and php op-code cache.
So I resolved this problem by clearing all the browser cache and then everything worked fine for me.
Here's our discussion thread on WordPress https://wordpress.org/support/topic/wrong-plugin-page-redirection-upon-activating-any-plugin/#post-9302622

Plugin could not be activated because it triggered a fatal error

I am Using MyMail - Email Newsletter Plugin for WordPress
MyMail - Email Newsletter Plugin for WordPress :::: advanced Newsletter Plugin for WordPress. Create, Send and Track your Newsletter Campaigns
Version 1.6.6.1 | By revaxar
When I try to activate this plugin i got an Fatal Error (Plugin could not be activated because it triggered a fatal error.)
as in
............................................................
http://codecanyon.net/item/mymail-email-newsletter-plugin-for-wordpress/3078294/comments?page=24
Discussion on MyMail - Email Newsletter Plugin for WordPress
please open the wp-content/plugins/myMail/classes/templates.class.php
and remove this line around #657:
$this->copy_templates()
and try again
.......................................
i tried a lot like PHP version related issue and all but could't get any proper solution to resolve it
Plugin produces fatal error when attempting to activate .The big question I have now is this: What is the cause of this fatal error and how can I fix it? Can someone help me interpret so I can begin to see how I might overcome these fatal errors?
Please try to update your wordpress version and that plugin version usually this problem occurs when plugin was coded for previously developed wordpress. there may be the compatibility issue in wordpress and plugin.

Notice: register_uninstall_hook was called incorrectly

I automatically updated my wordpress installation to the latest version. Everything looked normal unit "updating database..." where it got stuck. I waited for a long while and then closed the page, since nothing was happening.
Then I got a error message saying something about maintenance, which I got rid of after deleting the maintenance file.
Wordpress displays that it runs the latest version, but when I try to reinstall I get the same errror. I've tried disabling all plugins and switch to the default theme, but no luck.
I set the debug to true and I got this message:
Notice: register_uninstall_hook was called incorrectly. Only a static class method or function can be used in an uninstall hook. Please see Debugging in WordPress for more information.
Everything looks normal except a image on the front page is breaking the layout.
Any tips?
The way I fixed this type of problem, was to do a global search in my project for the function call.
Some plugins had been installed which had calls such as this:
register_uninstall_hook(__FILE__, array($this,'uninstall_removedata'));
but it should be this:
register_uninstall_hook( __FILE__, 'uninstall_removedata');
If you see a message that something is called incorrectly, the Codex can be very helpful to make sure you use the correct syntax.
In this case it is here:
http://codex.wordpress.org/Function_Reference/register_uninstall_hook
Some WordPress Plugin which you have installed is firing the uninstall hook and is not setup properly.
Can you find the path to the file from the error message?

Resources