jwineman
Forum Replies Created
-
Forum: Plugins
In reply to: [Cloudflare] Not able to get past email and API keyI think this might be the caching issue mentioned here:
https://wordpress.org/support/topic/problem-with-3-0-6-upgrade/#post-8264334Does clearing Cloudflare’s cache AND the local browser cache fix your issue?
Thanks,
JohnForum: Plugins
In reply to: [Cloudflare] 522 error happening on siteThe IP rewrite functionality in WordPress only works at the application level, meaning only WordPress and its plugins will see the rewritten IP. If you need server wide IP rewrite for applications other than WordPress (like awstats etc) then you need to use mod_cloudflare.
Thanks,
JohnForum: Reviews
In reply to: [Cloudflare] not well supportedHi @webitman,
What issue are you seeing? If you give us some information we’d be happy to try to debug further and fix it!
Thanks,
JohnForum: Plugins
In reply to: [Cloudflare] 3.0.5 blank setting pageHi @artigianidelweb and @webitman,
We aren’t suggesting you modify file permissions, we occasionally see incorrectly permissioned files as the root cause of issues like this which is why we ask. 755 and 644 should be fine.
Are there any errors in the browser console?
Are there any errors in the PHP error log?Thanks,
JohnForum: Plugins
In reply to: [Cloudflare] Problem with 3.0.6 upgradeYes, the irony is not lost on us haha. Glad your issue is resolved. As I said we’ll fix this cache issue for real in the next release.
Thanks,
JohnForum: Plugins
In reply to: [Cloudflare] A conjectureHi @pjv,
Let me try to give you a little context into why we redesigned it this way. @thellimist and I are the only developers on the partners team, which is responsible for all of our 3rd party integrations. We have around ten integrations which are completely separate code bases for different platforms including Magento, cPanel, Plesk, and WHMCS.
Managing new feature development, bug fixes, and version migrations for all these plugins was too much work for two developers so last year we started rewriting them on to a common code base. We have a backend which contains all the common code to our PHP based integrations and we have the React/Redux app on the frontend like you mentioned.
The reason the JS is 1+MB is because ALL of the plugin logic lives there. Moving all the logic to the front end allows us to share more code between our plugins. When we implement new features we only implement them once on the front end. Then every plugin we support can get access to that feature immediately instead of a developer having to code that feature into the custom backend for each plugin. A majority of our bugs are also fixed once in the front end but apply to every other plugin which uses our React app.
I agree that using React to create a WordPress plugin is overkill but we decided to do it because we think it will help us maintain more stable integrations over the long term and push new features out faster.
Thanks,
JohnForum: Plugins
In reply to: [Cloudflare] Cloudflare bugWas that error in the WordPress UI or from the PHP error log? If it was from the WordPress UI there is probably a more descriptive error in the PHP error logs with a stack trace of where the program execution failed.
Thanks,
JohnForum: Plugins
In reply to: [Cloudflare] Problem with 3.0.6 upgradeSo the root cause of this is caching right?
https://github.com/cloudflare/Cloudflare-WordPress/blob/master/compiled.js
https://github.com/cloudflare/Cloudflare-WordPress/blob/master/config.js
https://github.com/cloudflare/Cloudflare-WordPress/blob/master/lang/en.jsAre being cached on CloudFlare, or in your browser, or both. Doing a hard refresh on the plguin won’t refresh config.js and en.js. I think you’ll need to visit those URLs directly and do a hard refresh.
We’ll work on making sure these assets aren’t cached in the next release.
Thanks,
JohnForum: Plugins
In reply to: [Cloudflare] Can’t login with my email and API numberForum: Plugins
In reply to: [Cloudflare] Not works for me, was better the previous old plug inHi @peopleinside,
We’re no longer supporting protocol rewrite and instead only supporting rewriting to https. If this was the only reason you were using the plugin I suggest you downgrade to 1.x.
Thanks,
JohnForum: Plugins
In reply to: [Cloudflare] Active Zone not so activeHi @innovaot,
Can you open a Cloudflare.com support ticket, reference this page, and provide us the values from Settings > General
WordPress Address (URL)
Site Address (URL)Thanks,
JohnForum: Plugins
In reply to: [Cloudflare] 522 error happening on siteSometimes what happens is Cloudflare users will do a full cache purge and if their site has a lot of traffic the requests from Cloudflare to the origin to get to cache the updated content are seen as an attack but this subsides after all the content is in cache again.
If your host is seeing a legitimate attack coming from Cloudflare IPs we would ask that they file a support ticket with us so we can investigate.
Thanks,
JohnHi @webitman,
Can you be more specific about how 3.0.6 doesn’t work with your sites?
Are you seeing an error? If so what?
Thanks,
JohnForum: Plugins
In reply to: [Cloudflare] PHP 7.0 compatibilityNo worries! Thanks for using Cloudflare!
Forum: Plugins
In reply to: [Cloudflare] PHP 7.0 compatibilityHey,
So looks like I was mistaken, we don’t check for ext5-curl we check for
!extension_loaded('curl')
https://github.com/cloudflare/CloudFlare-Wordpress/blob/master/src/WordPress/Hooks.php#L100So it looks like you haven’t installed curl on your server yet. You can try:
apt-get install php-curlThanks,
John