seektruth
Forum Replies Created
-
Forum: Plugins
In reply to: [BulletProof Security] Redirect Plugins Work without BPSAtleast I know it’s not theme related. I have the exact same issue on 2 websites using completely different themes.
Originally I followed the instructions for beefing up security on folders based on the permissions you described. That was before I moved both sites to a new server. So both sites are set up the same with permissions.
I don’t believe there is a timed event occurring which reverses the changes I make. I believe it’s because I’m logged in as admin and eventually the admin permissions expire.
I’m going to re-enable bps and see what results I get with “Default Mode/Deactivating Root folder”
Forum: Plugins
In reply to: [BulletProof Security] Redirect Plugins Work without BPSDeactivating the plugin itself.
I understand about BPS not doing anything with time. That’s why I feel its permission based. When i’m in as admin, and I make post changes, redirect starts working.
Forum: Plugins
In reply to: [BulletProof Security] Redirect Plugins Work without BPS– With bps enabled: Any time I make a change, whether it’s updating a page, post, or changing a plugin, the mobile redirect starts working for about 30 minutes then stops.
– When bps is disabled, every redirect plugin works regardless of admin posts or changes.Right now I’m using “Equivalent Mobile Redirect” so I can custom redirect each page.
Maybe it’s a permissions issue in conjunction with bps? Can you tell me what they should be? I also recently changed hosts, maybe there’s a permissions issue there? Any information would be helpful.
Thank you,
STForum: Plugins
In reply to: [BulletProof Security] Whitelist Monitoring IPI’ve been reading a lot of info on allowing head 403 requests in this forum on solution to remove all HEAD 403 Request blocks.
But I currently do get requests from bad addresses, and would like to keep blocking them. Can I use the following code in Custom to allow a specific IP?# REQUEST METHODS FILTERED
# If you want to allow HEAD Requests use BPS Custom Code and
# remove/delete HEAD| from the Request Method filter.
# Example: RewriteCond %{REQUEST_METHOD} ^(TRACE|DELETE|TRACK|DEBUG) [NC]
# The TRACE, DELETE, TRACK and DEBUG Request methods should never be removed.
RewriteCond %{REQUEST_METHOD} ^(HEAD|TRACE|DELETE|TRACK|DEBUG) [NC]
RewriteCond %{REMOTE_ADDR} !^(74.86.158.107) [NC] <– Could I just change this to the correct address?
RewriteRule ^(.*)$ – [F]as you posted here: http://forum.ait-pro.com/forums/topic/split-uptimerobot-whitelist-uptimerobot-bot/page/2/#post-7168
Thank you,