larnellc
Forum Replies Created
-
Forum: Plugins
In reply to: [Sharify Social Share Buttons] Changing buttons orderI assume this feature isn’t available yet?
Forum: Plugins
In reply to: [SSH SFTP Updater Support] SFTP using port 21 and not 22? Why?you have to define your constant with the port like this
define(‘FTP_HOST’, ‘localhost:xxxx’)
like this
define(‘FTP_HOST’, ‘localhost:22’)Forum: Plugins
In reply to: [Broken Link Checker] Outbound filter to list only external links ?Is it also impossible to only scan for broken links within the domain wordpress is hosted on?
Forum: Plugins
In reply to: [BulletProof Security] Exclude wordpress redirect block.If you find out why there are two versions of the code on this page, could you keep the community updated?
https://codex.www.ads-software.com/Multisite_Network_Administration#.htaccess_and_Mod_Rewrite
Forum: Plugins
In reply to: [BulletProof Security] Exclude wordpress redirect block.Again, thanks so much. I look forward to next update. I appreciate you looking into this and providing such detailed responses. I am on shared hosting with Dreamhost and they were NOT helpful in determining the cause of my redirects. I could have saved a lot of time if there were tools available to users on shared hosting for troubleshoot this kind of situation. I did turn off security logging in BPS and that was not the cause of my redirects.
Your work helps take the mystery out of apache htaccess rules while keeping my site secure. I was able to use your forum to troubleshoot a variety of issues before this tread. Your post on example post on 301 redirects was especially helpful. Currently I have basic BPS, I’ll be upgrading to pro with your next patch.
Forum: Plugins
In reply to: [BulletProof Security] Exclude wordpress redirect block.I can triple check the rules are correct for their location but honestly, I would like to continue to exclude the wordpress rules from the /wordpress/.htaccess while preserving BPS rules.
Could a future update include some sort of option for this configuration? I tried placing the wordpress rules in the custom code section and it doesn’t save the changes.
Forum: Plugins
In reply to: [BulletProof Security] Exclude wordpress redirect block.WordPress has it’s own folder. So yes I do have a GWIOD Network Subdomain type setup. I do have an htaccess in both paths
/.htaccess
and
/wordpress/.htaccessAgain I eliminate the redirect error mentioned earlier when I comment out the wordpress rules. Are the rules supposed to be in each htaccess with this type of setup?
My /.htaccess looks exactly like the last code you posted.
RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] # add a trailing slash to /wp-admin RewriteRule ^wp-admin$ wp-admin/ [R=301,L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ - [L] RewriteRule ^(wp-(content|admin|includes).*) wordpress/$1 [L] RewriteRule ^(.*\.php)$ wordpress/$1 [L] RewriteRule . index.php [L]
Forum: Plugins
In reply to: [BulletProof Security] Exclude wordpress redirect block.Thanks for looking at this for me. I still think my problem is that the rules are duplicated between two htaccess files.
One is located in the true, server root of my install.
> /.htaccessThe rules are then automatically generated with BPS and located in
> /wordpress/.htaccessWhen I comment out only the wordpress the rules out of the second location
> /wordpress/.htaccess I no longer get the redirect error.My site was multisite but currently I only have one url, and one site running from the /wordpress/ install path.