blablabla
Forum Replies Created
-
Call it whatever you want, but I don’t agree with it, hence I don’t use your services anymore and I don’t need your help. But I won’t change my opinion.
Forum: Reviews
In reply to: [Gutenberg] Edit WordPress content with Gutenberg and MarkdownWhy not just ‘markdown’ without Gutenberg?
Forum: Reviews
In reply to: [Gutenberg] If it’s not broken why fix itExactly! Thank you sir!
Forum: Plugins
In reply to: [Super Progressive Web Apps] No Add to Home Screen with OneSignalYup, that worked.
I’ve should come up with the solution by myself, but, hey, it’s easy to spam the support section 🙂
Thanks for the great work! I will recommend this plugin.
Forum: Plugins
In reply to: [Super Progressive Web Apps] SuperPWA 1.8 – Push Notifications with OneSignalI have the same issue. Only if I disable OneSignal plugin then I have the correct manifest.json requirement, so if OneSignal is enabled I have no “install option in Chrome 67.0.xxx. I am testing the plugin here: https://fresh-science.com.
- This reply was modified 7 years, 12 months ago by blablabla. Reason: pwa api json
Forum: Plugins
In reply to: [AMP] AMP 0.7 = error 500 ?Yes, I can confirm the same. And strange enough there is no entry in the apache log. Thanks for the link.
- This reply was modified 8 years ago by blablabla.
Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] Po Mo Englishops, never mind, all done.
Okay, actually I’ve managed to fix it.
# Added to wp-config.php:
//Fail2Ban
define(‘WP_FAIL2BAN_PROXIES’,’127.0.0.1, my.server.ip.address’);# changed CustomLog format in /etc/apache2/apache.conf
#LogFormat “%h %l %u %t \”%r\” %>s %O \”%{Referer}i\” \”%{User-Agent}i\”” combined
LogFormat “%{X-Forwarded-For}i %l %u %t \”%r\” %>s %b \”%{Referer}i\” \”%{User-Agent}i\”” varnishcombined# Added in /etc/varnish/default.vcl
sub vcl_recv {
if (req.restarts == 0) {
if (req.http.X-Forwarded-For) {
set req.http.X-Forwarded-For = req.http.X-Forwarded-For + “, ” + client.ip;
} else {
set req.http.X-Forwarded-For = client.ip;
}
}}
And it worked.
// Ubuntu Server 16.04
Does not work for me. I had to turn off autoupdate and to downgrade until the solution is find…
The worst thing is that I don’t know what can cause the issue.