laszlogo
Forum Replies Created
-
Forum: Plugins
In reply to: [W3 Total Cache] Website broken due to incorrect double quoteHello @vmarko,
Great to hear you found the bug and will pushing a fix to a new release, 2.8.16 i’m guessing?
Forum: Plugins
In reply to: [W3 Total Cache] Website broken due to incorrect double quoteHello @vmarko,
Now your question is clear, yes it was in de W3TC block, to be more specific in between the
#BEGIN W3TC Browser Cacheand#END W3TC Browser Cachetags, all the way at the end.
Here is the entire piece in between aIfModulecheck:<IfModule mod_headers.c>
Header always set Strict-Transport-Security "max-age=31536000"
Header set X-XSS-Protection "1; mode=block"
Header set X-Content-Type-Options "nosniff"
Header set Public-Key-Pins "pin-sha256="$pin"; pin-sha256="$pinbak"; max-age=31536000"
Header set Referrer-Policy "no-referrer-when-downgrade"
</IfModule>We have a back-up service, where i noticed it was written differently, without breaking:
<IfModule mod_headers.c>
Header always set Strict-Transport-Security "max-age=31536000"
Header set X-XSS-Protection "1; mode=block"
Header set X-Content-Type-Options "nosniff"
Header set Public-Key-Pins "pin-sha256=\"\"; pin-sha256=\"\"; max-age=31536000"
Header set Referrer-Policy "no-referrer-when-downgrade"
</IfModule>Hope this clears the air and gives enough info to debug the situation and come with a solution/fix!
- This reply was modified 6 months, 1 week ago by laszlogo.
Forum: Plugins
In reply to: [W3 Total Cache] Website broken due to incorrect double quoteHello @vmarko, where can I find these settings?
Forum: Plugins
In reply to: [W3 Total Cache] Multisite cache/minify folder .htaccess updating issue@endymion00 thanks for the advice, most certainly not ideal but unfortunately necessary, a real shame because this plug-in most often gives great results.
Forum: Plugins
In reply to: [W3 Total Cache] Multisite cache/minify folder .htaccess updating issueThere is still no fix for this and it is still happening to websites of our clients. Here another example of a multisite installation where the .htaccess file in the minify folder was faulty again:
# BEGIN W3TC Minify cache # END W3TC Minify cache # BEGIN W3TC Minify core <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /wp-content/cache/minify/ RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.+\.(css|js))$ /index.php [L] </IfModule> # END W3TC Minify core RewriteEngine On RewriteBase /wp-content/cache/minify/ RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.+\.(css|js))$ /index.php [L] </IfModule> # END W3TC Minify coreThis is the file after regenerating it (deleting and clear caches):
# BEGIN W3TC Minify cache # END W3TC Minify cache # BEGIN W3TC Minify core <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /wp-content/cache/minify/ RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.+\.(css|js))$ /index.php [L] </IfModule> # END W3TC Minify coreForum: Plugins
In reply to: [W3 Total Cache] Multisite cache/minify folder .htaccess updating issue@vmarko is there any update on this issue?
Multiple user report a problem and we have multiple sites with this issue.
@endymion00 have given clear instructions on how the issues can be replicated.Forum: Plugins
In reply to: [W3 Total Cache] Multisite cache/minify folder .htaccess updating issueIs there any update on this issue? We’re experiencing similar issues where the .htaccess file has multiple/duplicate/incomplete rewrite rules/conditions which breaks the minify caching completely. Deleting the file and flushing the cache resolve the issue but it keep appearing on “random” intervals.
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Change plugin localeHello Ewout,
Thanks for your quick reply.
I tried to put the filter inside amuplugins_loadedaction, but no succes:add_action('muplugins_loaded', 'custom_muplugins_loaded', 10); function custom_muplugins_loaded() { add_filter('plugin_locale', function($locale, $textdomain) { if($textdomain == 'woocommerce-pdf-invoices-packing-slips') { $locale = 'de_DE'; } return $locale; }, 10, 2); }You don’t by any change have a working example on how the change the locale of the packingslip PDF?