Just pinging this thread, as SPF 4.3.5 has meanwhile rolled by in the stable release cycle, and I have trouble getting WP-Minify to work on the SPF pages. That is to say: having the WP-Minify plugin active won't break SPF, but it's necessary to exclude all SPF pages to avoid a bad clash.
Presently I do that in WP-Minify by excluding the SPF's JS and CSS files:
- In the WP-Minify settings page in the field labeled “JavaScript files to exclude from minify (line delimited)” I input the value “simple-forum” (no quotes)
- In the field labeled “CSS files to exclude from minify (line delimited)” I input the same “simple-forum” value (again, no quotes).
That's to ensure WP-Minify keeps working for the rest of the site, just not on SPF's “pages”.
So um, here's my request to see if there's something that could be tweaked or, perhaps, made context sensitive so as to allow WP-Minify to take a load off the JS and CSS code, which undoubtedly would help making the forums load faster, too.
Then, with WP Super Cache the same principle applies: having that caching plugin active won't break SPF, however it has to be disabled for all SPF controlled pages. In the WP Super Cache settings page, in the Accepted Filenames & Rejected URIs section, look for the field labeled “Add here strings (not a filename) that forces a page not to be cached. For example, if your URLs include year and you dont want to cache last year posts, it’s enough to specify the year, i.e. ’/2004/’. WP-Cache will search if that string is part of the URI and if so, it will not cache that page.” There, you input the URI segment that is relevant for your forum. In our case, the forum unimaginatively lives in the “forum” slug so that in the URI it shows up as /forum/ so “/forum/” is the value that goes there, in its own line, to exclude SPF from being (fully) cached.
It'd be awesome if at some point support for WP Super Cache could be built-in, either “negatively” by using the “do not cache” hooks of WP Super Cache, or “positively” by using e.g. the
do_cacheaction()
and
add_cacheaction()
plugin hooks (which would require a “plugin” file for WP Super Cache of course).