launchinteractive
Forum Replies Created
-
Forum: Plugins
In reply to: [Merge + Minify + Refresh] YARP issuesHi Minguel, I haven’t looked into this as We’ve been flat out lately. It sounds like its fixed so I’m marking it as resolved. Post back if you want us to have another look.
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Pre-installation questions…Hi Dave,
Turning on the plugin with activate MMR and turning it off will restore it to original state.
By Default MMR will generate minified files in /wp-content/mmr and this will be removed when the plugin is turned off.
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Files not served over HTTPSThat’s the first thing I was going to suggest. Glad it’s solved.
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Minify HTMLI’m going to mark this as resolved as Minify HTML seems like a good solution.
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Minify HTMLYeah, that does work well. I did find this https://gist.github.com/unfulvio/5889564 that works as well. It would be easy to add to MMR, however “Minify HTML” seems to reduce the page size a tiny bit more when all the options are on.
When you specify MMR_JS_CACHE_URL and MMR_CSS_CACHE_URL then MMR_CACHE_URL becomes unnecessary.
MMR stores css and js together in one folder (specified by MMR_CACHE_DIR). MMR_JS_CACHE_URL & MMR_CSS_CACHE_URL were added so you could use a different url on a CDN.
Currently you can’t tell MMR to store JS in a different folder to CSS. I’m thinking I could add this without too much fuss. Maybe I create a MMR_JS_CACHE_DIR and MMR_CSS_CACHE_DIR. What do you think?
Here is how to use the current setup:
define('MMR_CACHE_DIR', '/var/www/sitename/public_html/cache'); //absolute path to where the mmr cache is stored define('MMR_JS_CACHE_URL', '/'); //eg. http://js.website.com/ (setup as a subdomain to /var/www/sitename/public_html) define('MMR_CSS_CACHE_URL', '/'); //eg. http://css.website.com/ (also setup as a subdomain to /var/www/sitename/public_html)Forum: Plugins
In reply to: [Merge + Minify + Refresh] glob() BugHi Lenovouser,
What platform are you using? From the php doco it states:
Note: The GLOB_BRACE flag is not available on some non GNU systems, like Solaris.Hi Virgodesign,
Is your define a typo? It looks like your defining the CSS constant twice?
If you are going to specify a seperate location for CSS and JS then you will need to specify the server path for MMR_CACHE_DIR as well as absolute URL for MMR_JS_CACHE_URL and MMR_CSS_CACHE_URL
Forum: Plugins
In reply to: [Merge + Minify + Refresh] minified javascript corruptedI’ve just pushed a new version of MMR (1.6.12) that includes the latest version of Minify. This should fix your error.
- This reply was modified 9 years, 7 months ago by launchinteractive.
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Fatal Error where scripts in footer should beHey Andrew, Thanks for this. I’ve updated MMR and just released the new version. Let me know if you have any more issues.
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Fatal Error where scripts in footer should becould you send me that test theme you made? I’ll have a look and see if I can replicate it.
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Fatal Error where scripts in footer should beIf you want to email me a copy of your theme I can have a play with it and see if it errors on my staging.
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Fatal Error where scripts in footer should beI’d try maybe disabling all plugins except for MMR and see if the problem remains but it does sound like a theme issue. Maybe rename functions.php to _functions.php to disable it.. and see if the issue remains. If thats the case then your going to have to work your way through functions.php to see what is causing the issue.
If you can grant me access to your local/staging environment I may be able to have a look.
Forum: Plugins
In reply to: [Merge + Minify + Refresh] minified javascript corruptedI’ve been meaning to update Minify in MMR.. but just haven’t got round to it yet.
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Broken my siteHey kyledevelopintelligence,
Uninstalling the plugin in WordPress should remove everything including all the generated JS/CSS cache files.
If you can’t login you can manually remove the cache directory (defaults to /wp-content/mmr) and the plugin (/wp-content/plugins/merge-minify-refresh)