admin管理员组文章数量:1133890
I have a client whose site was broken by a plugin and instead of deactivating plugins, they deleted some kind of 'visual editor' plugin.
We managed to get the site back up and running and updated all the plugins.
HOWEVER - they don't remember the plugin for the visual editor.
Is there any place in the security logs or someplace where we can identify what the plugins WERE before they deleted them.
Does anyone know a way to check the logs so we can identify the name of the plugin my client deleted?
Thanks!
I have a client whose site was broken by a plugin and instead of deactivating plugins, they deleted some kind of 'visual editor' plugin.
We managed to get the site back up and running and updated all the plugins.
HOWEVER - they don't remember the plugin for the visual editor.
Is there any place in the security logs or someplace where we can identify what the plugins WERE before they deleted them.
Does anyone know a way to check the logs so we can identify the name of the plugin my client deleted?
Thanks!
Share Improve this question edited Jul 5, 2020 at 16:10 fuxia♦ 107k38 gold badges255 silver badges459 bronze badges asked Jan 19, 2019 at 21:20 ViktorViktor 1111 silver badge2 bronze badges 4 |1 Answer
Reset to default 1I know this is a bit late so I am going to post my answer for people who might encounter the same scenario. There are few things that you can do:
Option 1: Request a backup of your website from hosting company and then compare live version with that backup (as suggested by @RiddleMeThis)
Option 2:
You can you check meta_key
column of wp-options
table to see if there are any unused meta_key
entries (as suggested by @Jos) but if the website has changed a lot in the past then you may get false positives with a never ending search.
Option 3: Check your server access logs (as suggested by @J.D.) for those specific dates you may find a link similar to this :
http://your-wp-site.com/wp-admin/plugins.php?action=delete-selected&checked%5B0%5D=akismet%2Fakismet.php&plugin_status=all&paged=1&s&_wpnonce=4d4ca3d352
note that checked
parameter it contains the name of the plugin that is requested to be deleted.
Option 4: If you suspect it was a visual editor plugin then you should look for left over shortcodes used commonly used by these kind of page editors this will give a hint about the plugin that was installed. If it was not page editor plugin then you may still find broken shortcode left over (only if this plugin was providing any shortcode)
Option 5: Some complex plugins make new custom tables in your database which are not deleted even after uninstalling the plugin. There you can check for tables that are not currently available in your plugin list.
My suggestion would be to get the backup from hosting company and compare your plugin list with that backup.
Best of luck.
本文标签: How to identify the names of deleted plugins
版权声明:本文标题:How to identify the names of deleted plugins? 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1736773784a1952228.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
wp-options
table formeta_key
values that were left behind. They may betray what plugin they came from. – Jos Commented Jan 19, 2019 at 23:18