psx Active member Apr 13, 2016 #1 I've fixed that problem but how do I remove the cloudflare IPs from the IP logs in each member? @Chris D
I've fixed that problem but how do I remove the cloudflare IPs from the IP logs in each member? @Chris D
S SneakyDave Well-known member Apr 13, 2016 #2 You can try this add-on, but it will only fix IP's after it is installed https://xenforo.com/community/resources/solidmean-cloudflare-detect.1595/ Alternatively, you will want to install the CloudFlare mod for Apache or Nginx web server. Upvote 0 Downvote
You can try this add-on, but it will only fix IP's after it is installed https://xenforo.com/community/resources/solidmean-cloudflare-detect.1595/ Alternatively, you will want to install the CloudFlare mod for Apache or Nginx web server.
psx Active member Apr 13, 2016 #3 SneakyDave said: You can try this add-on, but it will only fix IP's after it is installed https://xenforo.com/community/resources/solidmean-cloudflare-detect.1595/ Alternatively, you will want to install the CloudFlare mod for Apache or Nginx web server. Click to expand... I've fixed it at server level, but the IPs are still under users history and when I click "Shared Users" it brings up many users. Upvote 0 Downvote
SneakyDave said: You can try this add-on, but it will only fix IP's after it is installed https://xenforo.com/community/resources/solidmean-cloudflare-detect.1595/ Alternatively, you will want to install the CloudFlare mod for Apache or Nginx web server. Click to expand... I've fixed it at server level, but the IPs are still under users history and when I click "Shared Users" it brings up many users.
Jake B. Well-known member Apr 14, 2016 #4 psx said: I've fixed it at server level, but the IPs are still under users history and when I click "Shared Users" it brings up many users. Click to expand... You can delete all of the cloudflare IPs from the xf_ip table Upvote 0 Downvote
psx said: I've fixed it at server level, but the IPs are still under users history and when I click "Shared Users" it brings up many users. Click to expand... You can delete all of the cloudflare IPs from the xf_ip table
psx Active member Apr 14, 2016 #5 Jake B. said: You can delete all of the cloudflare IPs from the xf_ip table Click to expand... When I browse in PHPMYADMIN, its not in IP format its "4a2ad6ca" Upvote 0 Downvote
Jake B. said: You can delete all of the cloudflare IPs from the xf_ip table Click to expand... When I browse in PHPMYADMIN, its not in IP format its "4a2ad6ca"
S SneakyDave Well-known member Apr 14, 2016 #6 If most of them are CloudFlare IP's, there's probably not much use to keeping them anyway, so you can remove all the IP's from the table with: Code: TRUNCATE TABLE `xf_ip`; Upvote 0 Downvote
If most of them are CloudFlare IP's, there's probably not much use to keeping them anyway, so you can remove all the IP's from the table with: Code: TRUNCATE TABLE `xf_ip`;
S SneakyDave Well-known member Apr 14, 2016 #7 Or, if you can identify the CloudFlare IP's, use this to remove them: Code: DELETE FROM `xf_ip` WHERE ip = x'4a2ad6ca' Upvote 0 Downvote
Or, if you can identify the CloudFlare IP's, use this to remove them: Code: DELETE FROM `xf_ip` WHERE ip = x'4a2ad6ca'