Users activity history

admin2025-06-03  2

we had some problems in our wordpress web when we changed some issues on the code, and I would like to identify which of the changes made the web crash.

I've tried some plugins as Simple History, but the problem is that you can't get the activity made previously to the installation of the plugin.

Does someone know how could I get the whole activity of the site, even we had no plugins installed?

Thanks in advance.

we had some problems in our wordpress web when we changed some issues on the code, and I would like to identify which of the changes made the web crash.

I've tried some plugins as Simple History, but the problem is that you can't get the activity made previously to the installation of the plugin.

Does someone know how could I get the whole activity of the site, even we had no plugins installed?

Thanks in advance.

Share Improve this question asked Feb 10, 2019 at 17:44 Code StarterCode Starter 11 bronze badge 1
  • Have you looked at the error.log file for indications of what file caused an error? Have you disabled any recent changes, or recent plugins? More info needed... – Rick Hellewell Commented Feb 10, 2019 at 18:04
Add a comment  | 

1 Answer 1

Reset to default 0

It's not going to show you previous history before the plugin was activated, there's no way to do that as you have to have the plugin activated for it to log and store those. This is not something done by default in WordPress.

What you need to do instead is to enable WordPress debugging, and then check the logs.

In your wp-config.php file, enable debug logging, by adding this:

define('WP_DEBUG', true);
define('WP_DEBUG_LOG', true);
define('WP_DEBUG_DISPLAY', true);

This will show the errors on screen, set WP_DEBUG_DISPLAY to false to prevent showing on screen.

With WP_DEBUG_LOG set to true, this will create a file located at wp-content/debug.log which you can view to see any errors or warnings from PHP on your site.

转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1748921288a314835.html

最新回复(0)