Hello! I will describe the symptoms. There is a site, on wp, w3 total cache was installed, but the plugin minified js crookedly ( jQuery is not defined got out), and then I deleted it, but no matter how hard I tried, in the same browser, where the error occurred, page as if saved and not updated. For example, even if you change the page, delete all the content, the cached version will remain. I deleted the cache through the plugin, deleted all the folders associated with this plugin. Here is .htaccess
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # Add correct content-type for fonts AddType application/vnd.ms-fontobject .eot AddType application/x-font-ttf .ttf AddType application/x-font-opentype .otf AddType application/x-font-woff .woff AddType image/svg+xml .svg # Compress compressible fonts AddOutputFilterByType DEFLATE application/x-font-ttf application/x-font-opentype image/svg+xml ExpiresActive On ExpiresByType image/gif "access plus 1 month" ExpiresByType image/png "access plus 1 month" ExpiresByType image/jpg "access plus 1 month" ExpiresByType image/jpeg "access plus 1 month" ExpiresByType text/javascript "access plus 1 month" ExpiresByType text/css "access plus 1 month" ExpiresByType text/plain "access plus 1 month" ExpiresByType application/vnd.ms-fontobject "access plus 1 month" ExpiresByType application/x-font-ttf "access plus 1 month" ExpiresByType application/x-font-opentype "access plus 1 month" ExpiresByType application/x-font-woff "access plus 1 month" ExpiresByType image/svg+xml "access plus 1 month" # END WordPress In other browsers, everything works, and even in the same browser in the "incognito" mode everything works. I will show an example of an error.
Here is the jQuery is not defined error in the browser where the page is not updated. This code has been minified by the plugin.
The same browser in incognito mode. So let's say the "original" code.
Can anyone come across this? What could be the problem and how to solve it? Although it turns out that the problem is present only with me, but still interesting. Thank!

