launchinteractive
Forum Replies Created
-
No worries. Glad you like our plugin!
Hi swinggraphics. We have just uploaded a new version of MMR that should resolve this issue. Let me know if you have any issues.
The plugin only needs Java when compressing with Google Closure. It should however fallback to use Minify (only requires PHP) when Java isn’t available. Minify does a great job, but we find Closure to create slightly smaller script files. CSS minification uses Minify so Java isn’t needed for it.
It could be. Is your WordPress site running from the root of your domain or is it on a folder called WordPress? I’ve never tried mmr with an installation in a sub folder.
Are you able to try disabling the paid-memberships-pro plugin and see if you still get the error?
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Ignore files does not workHi again, please see your other thread.. https://ww.wp.xz.cn/support/topic/generates-blankempty-files-file_get_contents-errors-1
Hi swinggraphics,
Are you using BWP Minify and MMR? Its possible there is a conflict. I’ve never tried to use both together and I think they could slow your site down if they run together as you would be processing everything twice. I’d recommend choosing one or the other.
Hi exirtix,
Do you have java installed?
Its possible its not being detected.Forum: Plugins
In reply to: [Merge + Minify + Refresh] Less filels?Hi myar, there are a few reasons multiple files are generated. The order of your includes can impact this. Make sure all external files are output together before or after your local scripts. CSS media attribute can also impact this. If you can provide your url I might be able to work out what your issue is.
Forum: Plugins
In reply to: [WooCommerce] has the bulk edit attributes changed?Oh, right. Is there any plans to add this feature as it was very useful?
Forum: Plugins
In reply to: [Merge + Minify + Refresh] homepage is fine but it breaks every other pageAre you enforcing SSL only on certain pages or site wide? Do you have a url we can check?
Forum: Plugins
In reply to: [Merge + Minify + Refresh] homepage is fine but it breaks every other pageHi Jamie, try changing the WordPress site url in settings to https.
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Clash with slideshow 2.3.1 in WordPress 4.4I know what you mean about it being hard to track down where the errors are. I’m working on an update that will give you the ability to turn off minification as well as merging and the ability to ignore certain scripts. This should help the debug process.
Maybe I should look into the Closure Compiler Service API. This could be another option for when exec/java aren’t available.
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Clash with slideshow 2.3.1 in WordPress 4.4The problem with not minifying min.js files is the order that MMR processes files:
1) MMR builds a list of files that can be merged/minified
2) MMR checks if the merged file exists and hasn’t been modified. If it exists it feeds the browser that version. If not then it generates a merged file and feeds it that. It also schedules a minification on the file which is done in the background.
3) MMR minifies in the background so future requests get the modified version.In order to prevent the file minifying merged files twice I think MMR would need to split the merged file and process the pieces.
I think I would prefer to use the script debug method or get the modified file fixed. From what I can tell is the else statements do nothing and aren’t required.. If they were removed then everything should work as expected.
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Clash with slideshow 2.3.1 in WordPress 4.4Ahh, that explains why I couldn’t replicate the issue.
It looks like PHP Minify has an issue with the way that wp-embed.min.js is minified. Actually, upon inspection of the minified wp-embed file it looks like there are some stray else statements.. that aren’t being used??? The un-minified versions don’t have these else statements.
If you do want to use wp-emebed.min.js you could possibly turn off minified javascript files using define( ‘SCRIPT_DEBUG’, true ); in your wp-config file. MMR should then minify it for you and hopefully without breaking anything.