@astrogd,
There’s a way to extract blocked IPs from the database. Could that be what you’re looking for?
@yndmgo
Sadly that is not what I’m looking for. I need the log Data from Life Traffic.
Like a list of all Requests from the last 2 Weeks or so.
@astrogd,
These entries are not logged in a file; only in the database.
If you want to see all traffic you’ll have to look into the “wfHits” table and craft an SQL query which includes “ctime” (column containing the timestamp in Epoch format); something like:
SELECT INET6_NTOA(IP)
FROM wp_wfHits
WHERE ctime <1524257654
You can also choose to include other columns in the query (the “URL”, for example)
The Epoch timestamp I specified in the above example (1524257654) converts into “Friday 20 April 2018 20:54:14 (GMT)”
Hi @astrogd
Wordfence “Live Traffic” logs requests to your website for the number of rows defined in “Amount of Live Traffic data to store” option under (Tools > Live Traffic > Live Traffic Options). Your target database table is indeed “wp_wfHits” table, but this will be limited data. I suggest checking the server access log files, you can ask your hosting provider for these files.
Thanks.
Hello guys,
thank you for your help.
Ill try getting in touch with my provider, thank you.
Kind regards,
AstroGD