Doug Stewart
Forum Replies Created
-
You just need to add a stub file in
wp-content/mu-plugins
in order for this to work, Marcio. Install the plugin itself inwp-content/mu-plugins/limit-login-attempts-reloaded/
and then create a file calledwp-content/mu-plugins/limit-login-attempts-reloaded.php
containing:<?php /** * Plugin Name: Limit Login Attempts Reloaded Loader * Plugin URI: https://www.ads-software.com/plugins/limit-login-attempts-reloaded/ * Description: Loads LLAR * Version: 2.0.0 * Author: wpchef * Author URI: https://www.www.ads-software.com * License: GPLv2 or later */ require_once __DIR__ . '/limit-login-attempts-reloaded/limit-login-attempts-reloaded.php';
Forum: Plugins
In reply to: [HyperDB] Installation causes blank pagenlsun:
Is this PHP 7 by any chance? We’re seeing the same thing.Forum: Networking WordPress
In reply to: switch_to_blog() not workingYeah,
switch_to_blog()
will always return 1/true:Return Values
(bool)
true is returned even when no blog exists with a Blog ID of $new_blog, or when “switching” to the current blog.From https://codex.www.ads-software.com/Function_Reference/switch_to_blog
Forum: Fixing WordPress
In reply to: RSS Widget error due to SSLSee https://wordpress.stackexchange.com/questions/44509/the-https-local-ssl-verify-filter, and the WP references for https://developer.www.ads-software.com/reference/hooks/https_local_ssl_verify/ and https://developer.www.ads-software.com/reference/hooks/https_ssl_verify/ for more info on how to best filter and make cURL ignore the self-signed cert.
Forum: Fixing WordPress
In reply to: RSS Widget error due to SSLDan:
Yes. cURL tries to verify the integrity of SSL certs and will error out unless told to ignore verification.Basically, you need to run the equivalent of
curl -k
:-k, –insecure
(SSL) This option explicitly allows curl to perform “insecure” SSL connections and transfers. All SSL connections are attempted to be made secure by using the CA certificate bundle installed by default. This makes all connections considered “insecure” fail unless -k, –insecure is used.
See this online resource for further details: https://curl.haxx.se/docs/sslcerts.html
Forum: Fixing WordPress
In reply to: Can't access dashboard after SSL installOtto:
If he hasn’t enabled underscores in headers, Nginx will flag the header as invalid and ignore.https://nginx.org/en/docs/http/ngx_http_core_module.html#underscores_in_headers
Forum: Fixing WordPress
In reply to: Can't access dashboard after SSL installRight, I’m saying he’s matching against an invalid header in his if() check, not that he doesn’t want to force it.
Forum: Fixing WordPress
In reply to: Can't access dashboard after SSL installAlso what Otto said there — you won’t ever force $_SERVER[‘https’] to ‘on’ because it’s matching against a header that’s not being sent.
Forum: Fixing WordPress
In reply to: Can't access dashboard after SSL installDo you see any of the hits ever make it to the Apache logs?
Forum: Fixing WordPress
In reply to: Can't access dashboard after SSL installAre you terminating SSL at the Nginx layer or at the Apache layer? A Gist or Pastebin of your exact Nginx configs, stripped of sensitive info, would be very helpful.
Forum: Fixing WordPress
In reply to: RSS Widget error due to SSLSelf-signed cert?
Forum: Themes and Templates
In reply to: [Elbee Elgee] Missing translation ?i18n support is due for inclusion in the next update. Thanks!
Forum: Themes and Templates
In reply to: [Elbee Elgee] Menu and Link COlorscalpoly:
First off: wow! The site looks great! Definitely one of my favorite implementations thus far.Specificity is weird in version 1.3.x. I’m working hard to fix this in 1.4, but the crux of your issue is that you’ll need to out-specify ng.css in order to make your changes “take”.
It looks like, though, you figured it out.
Forum: Themes and Templates
In reply to: [Elbee Elgee] Make sub-blog based on categoryAndrius:
Glad that it’s working out for you!Forum: Themes and Templates
In reply to: [Elbee Elgee] Buddypress plug-in "Buddypress Docs"Adam:
Were you having problems with BuddyPress version 1.7?