jwineman
Forum Replies Created
-
Forum: Plugins
In reply to: [Cloudflare] 3.0.1 breaks websiteHey,
We think this bug is related to our implementation of HTTP2/ServerPush. We’re removing it in 3.0.2 which should be released some time today. Please let us know if this update fixes your errors.
Thanks,
JohnForum: Plugins
In reply to: [Cloudflare] Invalid CSRF Token on 3.0.1Hi,
We use wp_create_nonce() to generate our CSRF token. If you refresh the page (you shouldn’t need to relogin) does it fix the error?
It might be a caching issue but I don’t see how 2FA would affect this.
Thanks,
JohnForum: Reviews
In reply to: [Cloudflare] Beware, this plugin can break your WP install!Hi,
Can you confirm that 3.0.0 was causing your site to return 520 errors?
Thanks,
JohnForum: Plugins
In reply to: [Cloudflare] Update crashes siteHi,
It looks like the root cause of the 520 and 502 errors is the HTTP2/ServerPush functionality. We’re in the process of releasing 3.0.2 which will have this functionality removed.
Thanks,
JohnForum: Plugins
In reply to: [Cloudflare] 3.0.1 breaks websiteHi,
Were you getting 502 errors when your site broke?
Thanks,
JohnForum: Plugins
In reply to: [Cloudflare] Latest update broke siteHi @bitsum,
We did a lot of QA on this latest release. It was in beta for about a month with over 55 beta testers. The root cause of the 520 and 502 http error codes was because our implementation of HTTP2/Server push created too many headers for websites with lots of resources to load. We never saw this during testing because by chance none of our beta testers had front ends large enough to trigger the header bug.
Thanks,
JohnForum: Plugins
In reply to: [Cloudflare] Latest update will not updateHey,
Yeah we’ll be doing manual deploys until we have a chance to fix the scripts.
Thanks,
JohnForum: Reviews
In reply to: [Cloudflare] FATAL ERRORHow did it break your install? Do you have an error log I can see?
Forum: Plugins
In reply to: [Cloudflare] Error 502 for editing postsHi,
Can you please give me some information about your server:
Do you have any errors in your php error log?
What version of WordPess are you running?
What verision of PHP are you reading?
What is your include path?
Are you loading your site over http or https?Forum: Plugins
In reply to: [Cloudflare] Upgrade to 3.0 prevents site editingHi,
Can you answer a few questions to help me debug this please?
Do you have any errors in your php error log?
What version of WordPess are you running?
What verision of PHP are you reading?
What is your include path?
Are you loading your site over http or https?Thanks,
JohnForum: Plugins
In reply to: [Cloudflare] Error Log on 3.0The reason I wanted to know your include path is because I think its causing the namespace based autoloader to fail. The error you got was composer’s autoloader not finding the IpRewrite class at the folder location it expected. If it was the namespace’s fault then it would have failed in cloudflare.php when the init method is called by namespace. My guess (right now) is your php include path is configured differently than our app expects.
Forum: Plugins
In reply to: [Cloudflare] Update crashes siteDo you have any errors in your php error log?
What version of WordPess are you running?
What verision of PHP are you reading?
What is your include path?
Are you loading your site over http or https?Forum: Plugins
In reply to: [Cloudflare] Update crashes siteI think that error is caused by add_action registering the init method on CF\Hooks\Init. I’m guessing add_action is trying to instantiate CF\Hooks\Init before calling init and it gets the error because that class is static and can’t be instantiated.
I still cant reproduce it on my dev environment though which makes me think that isn’t whats happening.
Forum: Plugins
In reply to: [Cloudflare] Update crashes siteDo you have a more complete stacktrace?
What version of PHP are you running?
What version of WordPress?Your error is different from what @kilmanagh is seeing.
Forum: Plugins
In reply to: [Cloudflare] Error Log on 3.0So it looks like the composer autoloader is failing but if that was true it wouldn’t even get this far, it would fail in cloudflare.php when looking up the init method.
What is the output of get_include_path() on your server?