kitatech
Forum Replies Created
-
Downgrading to 2.6.9 fixed the issue.
Using wp-cli (cause wp-admin page still gives 403 Forbidden error), I removed auto-update on this plugin until a fix to 2.6.10 is released.
Hope this will happen soon.
I can provide more details upon request.
usually, I first get a timeout error, then the well-known “No domain name” error.
Error 1:
Version 6.0.1
Cloudflare Settings
Enter API KeysPlease enter your API Key below to to access Cloudflare APIs.
API Token:
cURL error 28: Resolving timed out after 5516 millisecondsError 2:
Version 6.0.1
Cloudflare Settings
Enter API KeysPlease enter your API Key below to to access Cloudflare APIs.
API Token:
No zone name http://www.example.comHint: the website has 2 domain names.
So I have questions:
1.Which one this plugin logics compare with Cloudflare ?
2. Cloudflare does not include www. in the domain name, just the TLD. Why this plugin zone name includes the www. ? Can this be the problem that they do not match ?Forum: Fixing WordPress
In reply to: Giving WordPress Its Own Directory: not working behind haproxyThanks for the links, I had to change their code to make their solution work:
This line:
$_SERVER['HTTPS']='on';was still giving the redirect loop. Apache error log was giving:
PHP Warning: Use of undefined constant \xe2\x80\x98HTTPS\xe2\x80\x99 - assumed '\xe2\x80\x98HTTPS\xe2\x80\x99' (this will throw an Error in a future version of PHP) in /var/www/html/subdirectory/wp-config.php on line 25, referer: https://www.example.com/subdirectory/I had to change the simple quotes to double quote to have it work.
$_SERVER["HTTPS"]="on";Not sure why, as not familiar to php syntax…