Title: laszlogo's Replies | WordPress.org

---

# laszlogo

  [  ](https://wordpress.org/support/users/laszlogo/)

 *   [Profile](https://wordpress.org/support/users/laszlogo/)
 *   [Topics Started](https://wordpress.org/support/users/laszlogo/topics/)
 *   [Replies Created](https://wordpress.org/support/users/laszlogo/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/laszlogo/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/laszlogo/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/laszlogo/engagements/)
 *   [Favorites](https://wordpress.org/support/users/laszlogo/favorites/)

 Search replies:

## Forum Replies Created

Viewing 8 replies - 1 through 8 (of 8 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[W3 Total Cache] Website broken due to incorrect double quote](https://wordpress.org/support/topic/website-broken-due-to-incorrect-double-quote/)
 *  Thread Starter [laszlogo](https://wordpress.org/support/users/laszlogo/)
 * (@laszlogo)
 * [6 months ago](https://wordpress.org/support/topic/website-broken-due-to-incorrect-double-quote/#post-18751639)
 * Hello [@vmarko](https://wordpress.org/support/users/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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[W3 Total Cache] Website broken due to incorrect double quote](https://wordpress.org/support/topic/website-broken-due-to-incorrect-double-quote/)
 *  Thread Starter [laszlogo](https://wordpress.org/support/users/laszlogo/)
 * (@laszlogo)
 * [6 months, 1 week ago](https://wordpress.org/support/topic/website-broken-due-to-incorrect-double-quote/#post-18737604)
 * Hello [@vmarko](https://wordpress.org/support/users/vmarko/),
 * Now your question is clear, yes it was in de W3TC block, to be more specific 
   in between the `#BEGIN W3TC Browser Cache` and `#END W3TC Browser Cache` tags,
   all the way at the end.
   Here is the entire piece in between a `IfModule` check:
 *     ```wp-block-code
       <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:
 *     ```wp-block-code
       <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](https://wordpress.org/support/users/laszlogo/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[W3 Total Cache] Website broken due to incorrect double quote](https://wordpress.org/support/topic/website-broken-due-to-incorrect-double-quote/)
 *  Thread Starter [laszlogo](https://wordpress.org/support/users/laszlogo/)
 * (@laszlogo)
 * [6 months, 2 weeks ago](https://wordpress.org/support/topic/website-broken-due-to-incorrect-double-quote/#post-18734173)
 * Hello [@vmarko](https://wordpress.org/support/users/vmarko/), where can I find
   these settings?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[W3 Total Cache] Multisite cache/minify folder .htaccess updating issue](https://wordpress.org/support/topic/multisite-cache-minify-folder-htaccess-updating-issue/)
 *  [laszlogo](https://wordpress.org/support/users/laszlogo/)
 * (@laszlogo)
 * [2 years, 8 months ago](https://wordpress.org/support/topic/multisite-cache-minify-folder-htaccess-updating-issue/#post-17113540)
 * [@endymion00](https://wordpress.org/support/users/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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[W3 Total Cache] Multisite cache/minify folder .htaccess updating issue](https://wordpress.org/support/topic/multisite-cache-minify-folder-htaccess-updating-issue/)
 *  [laszlogo](https://wordpress.org/support/users/laszlogo/)
 * (@laszlogo)
 * [2 years, 8 months ago](https://wordpress.org/support/topic/multisite-cache-minify-folder-htaccess-updating-issue/#post-17113441)
 * There 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:
 *     ```wp-block-code
       # 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 core
       ```
   
 * This is the file after regenerating it (deleting and clear caches):
 *     ```wp-block-code
       # 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
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[W3 Total Cache] Multisite cache/minify folder .htaccess updating issue](https://wordpress.org/support/topic/multisite-cache-minify-folder-htaccess-updating-issue/)
 *  [laszlogo](https://wordpress.org/support/users/laszlogo/)
 * (@laszlogo)
 * [2 years, 8 months ago](https://wordpress.org/support/topic/multisite-cache-minify-folder-htaccess-updating-issue/#post-17104455)
 * [@vmarko](https://wordpress.org/support/users/vmarko/) is there any update on
   this issue?
   Multiple user report a problem and we have multiple sites with this
   issue.[@endymion00](https://wordpress.org/support/users/endymion00/) have given
   clear instructions on how the issues can be replicated.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[W3 Total Cache] Multisite cache/minify folder .htaccess updating issue](https://wordpress.org/support/topic/multisite-cache-minify-folder-htaccess-updating-issue/)
 *  [laszlogo](https://wordpress.org/support/users/laszlogo/)
 * (@laszlogo)
 * [2 years, 8 months ago](https://wordpress.org/support/topic/multisite-cache-minify-folder-htaccess-updating-issue/#post-17058579)
 * Is 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[PDF Invoices & Packing Slips for WooCommerce] Change plugin locale](https://wordpress.org/support/topic/change-plugin-locale/)
 *  Thread Starter [laszlogo](https://wordpress.org/support/users/laszlogo/)
 * (@laszlogo)
 * [4 years, 3 months ago](https://wordpress.org/support/topic/change-plugin-locale/#post-15426027)
 * Hello Ewout,
 * Thanks for your quick reply.
    I tried to put the filter inside a `muplugins_loaded`
   action, 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**?

Viewing 8 replies - 1 through 8 (of 8 total)