launchinteractive
Forum Replies Created
-
Forum: Plugins
In reply to: [Merge + Minify + Refresh] file_get_contents error on multisiteAhh ok. I’ll setup a staging site and see if I can replicate it.
Forum: Plugins
In reply to: [Merge + Minify + Refresh] file_get_contents error on multisiteHi,
Is /Users/username/Sites/wp/wp-blog-1/wp-content/themes/theme-name/assets/stylesheets/dist/app.css a valid path? Does that file exist ?
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Doesn’t merge filesHi,
The first two entries would be because of the different css media types (screen & all).
The other split files I think is because of the external font files. Are you able to try enqueuing them last?
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Not working : Ignore these files (one per line):Hmm.. can you try it by removing the .min in the filename?
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Not working : Ignore these files (one per line):Hi,
Have you expanded the log to see the path of the files? Thats what MMR compares against. Please check you are using these.
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Version numbering inconsistenciesNo worries. Thanks for the feedback!
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Version numbering inconsistenciesHi Flurin,
Ahh yes, sorry about that. Give that a go now.
Hi Steve,
I don’t understand why they would be in your sitemap. They are css files and aren’t page urls. I can’t find the links anywhere in your sitemaps.. did you manage to solve it?
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Add hook to allow me modify paths out wp-configAhh right. What does the ajax call return? Do you have WordPress Debug mode on?
Are there any errors in your hosting logs?Forum: Plugins
In reply to: [Merge + Minify + Refresh] Add hook to allow me modify paths out wp-configHi Dan.
Thats an interesting suggestion. I’ll look into it.
The missing purge all button is strange. We don’t do anything that should hide it. What happens if you manually purge all (delete the MMR folder).
The easiest way I found was to modify the non-gzipped version (like make a red background) and see if it shows up. If not then the browser is using the gzipped version.
As far as fixing the render blocking.. this is a fairly advanced suggestion and in my experience is only really possible on a custom built site (not WordPress). WordPress includes CSS/Javascript from various plugins etc its kinda impossible to get a tick for this one. I’d ignore it.
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Keep inline CSS and JSHi David. I don’t think we do anything to inline styles. Could it be another plugin that is mucking this up for you? How are you going about adding your CSS? Are you able to provide a link?
Forum: Plugins
In reply to: [Merge + Minify + Refresh] store the js files out of the wp-content folderare you able to try it with the full path: eg. define(‘MMR_CACHE_DIR’, ‘/var/www/html/cdn1’);
also, check your talking marks.. that might be the error.
Forum: Plugins
In reply to: [Merge + Minify + Refresh] store the js files out of the wp-content folderYes it is. You will need to make use of the MMR_CACHE_DIR & MMR_CACHE_URL constants in wp-config.php. MMR_CACHE_DIR must be full server path and MMR_CACHE_URL must be absolute URL for this to work correctly
Hey Myar,
I just installed WordPress on nginx and got it serving the generated gz files. This is what I added to my nginx.conf to get it to work:
gzip off; gzip_static on;