Raul P.
Forum Replies Created
-
Forum: Plugins
In reply to: [Fast Velocity Minify] FVM Plugin compatibility issueIt works with WP 5.9 and PHP 8. Not being officially tested, doesn’t mean incompatible. Thanks
Forum: Plugins
In reply to: [Fast Velocity Minify] Plugin breaks siteYou would need to use a compatible cache plugin, or a hosting that is supported by the plugin.
It will depend on how the page cache is running and for how long it’s valid.
When you update a plugin, theme, or as needed, the code changes so the cache needs to be regenerated and the file names will change. If the file names were not changed, the updates would not be reflected on your users browsers, or it would be cached on the CDN and errors would occur.
The issue of missing CSS/JS files means, you have purged FVM or the daily maintenance to delete expire files ran, but page cache was not cleared. If you do not clear page cache after deleting fvm generated files, they will result in 404 errors.
FVM tries to auto purge several hosting providers and cache plugins, however, if your hosting also does page caching in-between and FVM cannot purge it, that may be the reason for the situation to happen.
Please ensure that whenever you purge FVM, you also purge your page caching.
Forum: Plugins
In reply to: [Fast Velocity Minify] Update WordPress 5.8.2 -> 5.9yes, it will be on the next update today. Thanks
Forum: Plugins
In reply to: [Fast Velocity Minify] Does this plugin work with 5.8.1It’s compatible with PHP 8 and WP 5.9. Thanks
Forum: Plugins
In reply to: [Fast Velocity Minify] Update WordPress 5.8.2 -> 5.9Not tested, simply means that there hasn’t been an update but It’s fully compatible with WP 5.9 and PHP 8. Thanks
Forum: Plugins
In reply to: [Fast Velocity Minify] CSS minification breaks calc()Thanks, this will be fixed on the next update.
This is fixed on the next update. Thanks
Forum: Plugins
In reply to: [Fast Velocity Minify] Breaks site will full page cachingIt will depend on how the page cache is running and for how long it’s valid.
When you update a plugin, theme, or as needed, the code changes so the cache needs to be regenerated and the file names will change. If the file names were not changed, the updates would not be reflected on your users browsers, or it would be cached on the CDN and errors would occur.
The issue of missing CSS/JS files means, you have purged FVM or the daily maintenance to delete expire files ran, but page cache was not cleared. If you do not clear page cache after deleting fvm generated files, they will result in 404 errors.
FVM tries to auto purge several hosting providers and cache plugins, and WP Cloudflare Super Page Cache is supported, so there should be no issues. However, if your hosting also does page caching in-between, that may be the reason for the situation to happen.
Forum: Plugins
In reply to: [Fast Velocity Minify] Purging cache suggetionSometimes when the cache grows too big, or when the hosting has a slow disk, some files may be left behind. You can either manually purge the directory (after cache purging, it will regenerate again), or enable the instant purge option https://i.imgur.com/gGi0tNi.png if your hosting is supported.
Forum: Plugins
In reply to: [Elementor Website Builder - more than just a page builder] Broken template@jdembowski thanks, but I was talking specifically about the free elementor version. That is the one that breaks things after the update. I had to downgrade it back to 3.4.8 anyway, as it caused other issues.
Elementor Pro while also there, doesn’t affect the issue… but I will contact elementor support directly.
Forum: Plugins
In reply to: [Fast Velocity Minify] PHP Server 7.4 compatibility issuesThat error is unrelated to PHP, it’s a JavaScript error.
Please check if disabling FVM and clearing your cache makes.it disappear.
If it does, you need to exclude that file from minification. The script is not compatible with the minification library used on FVM.
Forum: Plugins
In reply to: [Fast Velocity Minify] Settings not serializedThe data is not serialized, it’s json encoded.
You can access it as an array, inspect the keys and save it’s settings accordingly.// get settings $fvm_settings = json_decode(get_option('fvm_settings'), true); // your changes here $fvm_settings['some_key'] = 'value'; // resave update_option('fvm_settings', json_encode($fvm_settings), false);If you are doing this, please ensure it doesn’t check on every pageview, else you will stress the database. Use transients perhaps, or some “done” field, somewhere else as a control.
Forum: Plugins
In reply to: [Fast Velocity Minify] FVM scripts and styles not loading on the siteAre the files empty perhaps? If the files are created on the cache directory and they are not empty, check your html source for the file names.
If there are references to fvm files, and if you can open those files directly, it should work.
If you mean, the files are not added to the page at all, probably some other plugin or code is causing it. Likely some other cache plugin, or some code using “ob_get_contents” or similar on the php code and interrupting the flow.
Deactivate (rename) the other plugins one by one and you should be able to see it.
Also make sure any server page caching is disabled, including object cache.
Forum: Plugins
In reply to: [Fast Velocity Minify] Exclude the Sitemap from cachesDoesn’t seem to have any problem then.
https://www.xml-sitemaps.com/validate-xml-sitemap.html?op=validate-xml-sitemap&go=1&sitemapurl=https%3A%2F%2Fvaporbros.net%2Fsitemap_index.xml&submit=Validate+SitemapForum: Plugins
In reply to: [Fast Velocity Minify] Exclude the Sitemap from cachesFVM doesn’t do cache for dynamic content.
If the sitemap is broken due to minification, let me know the sitemap url.