force-https
force-https copied to clipboard
HTTPS enforcement for WordPress
When using a php script to manipulate a WP install, the force-https plugin will still try to load itself, and the `start` function will `die()`, thus making it impossible for...
Fixes issue for me.
I have an edge-case scenario but wanted to suggest an improvement because it "could" affect users some day. I am applying the content filter as an output buffer so that...
As discussed in https://wordpress.org/support/topic/php-7-compatibility-229/, pass-by-reference is deprecated. Affects lines 85, 86 and possibly elsewhere: https://github.com/littlebizzy/force-https/blob/1.2.0/admin-notices-ms.php#L85
I support the plugins current approach to replace URLs in specific instances but ran into some cases where exterior page content (driven by dynamic options) used insecure URLs. Until such...
Suggestion: Wrap the require() calls in the main plugin file in the check for the DISABLE_NAG_NOTICES constant. This saves the file read time.
Thanks for your work on this plugin! With the most recent update, the short syntax for PHP arrays breaks PHP 5 installs. These changes fix it again. Dropping support for...