archon810
Forum Replies Created
-
Forum: Plugins
In reply to: [FancyBox for WordPress] [Plugin: FancyBox for WordPress] Bug – Image sourceCame here to say the same – tons of 404s because of this from IE users.
Forum: Plugins
In reply to: [W3 Total Cache] W3 Total Cache & Google 1 buttonDo you have Minify enabled? Try disabling that and seeing if it solves the issue. If it does, I would recommend keeping it disabled in w3tc and going to WP-Minify.
Download Charles from http://www.charlesproxy.com, start it and then browse to your site. Then find the request in Charles, go to Response -> Headers and see if the caching headers are present.
Btw, browser caching will not help your load – it only helps for subsequent reloads. If your site is slow, browser caching is not the problem.
mod_mem_cache is not the same as mod_memcache – http://httpd.apache.org/docs/2.0/mod/mod_mem_cache.html has nothing to do with memcached – you need http://code.google.com/p/modmemcache/.
You need to install mod_memcache and then a PHP extension called memcache:
pecl install memcache.Hrm, I just installed the latest released (not trunk) version, followed by memcached for apache and pecl-memcache for php, and I can confirm it worked.
Does your phpinfo() show a section for memcache?
I recommend letting WP-Minify handle CSS/JS caching, and disabling it in W3TC.
Forum: Plugins
In reply to: [Editz] [Plugin: Editz] Looks interesting !Likewise – this seems like exactly what I’ve always wanted. Is the plugin maintained? It hasn’t been updated this year.
Forum: Plugins
In reply to: [Sovrn] [Plugin: VigLink] Force rewrite Amazon links?Never mind, looks like it’s a setting per API key. I wish there was a way to only rewrite Amazon and not eBay.
You should never be hardcoding the plugin directory in your code. Users may choose their own directory names, which will break the plugin.
See http://codex.wordpress.org/Function_Reference/plugin_basename for the right way to do it.
Forum: Plugins
In reply to: [WP-DBManager] Plugin kills server due to 60 simultaneous db backupsOh, and needless to say, this wiped all working backups that I had.
Forum: Everything else WordPress
In reply to: MaxCDN – How to Update the cached stylesheet?Thanks you, Ahmed, this helped a lot.
Forum: Plugins
In reply to: [WordPress.com Stats] WordPress.com Stats: Stopped workingSame problem for a few months now on one of my blogs after upgrading to the latest version of the plugin. The other blog hosted on the same server is fine though.
Forum: Fixing WordPress
In reply to: call function called by [embed] shortcode direct@luckykind, brilliant, I was looking to see why do_shortcode with embed wasn’t working – it was driving me nuts. Your solution works great, though it’s so silly that we need to do this so manually.
Forum: Plugins
In reply to: [JSON API] [Plugin: JSON API] WP-Minify incompatibility with jason-apiI ended up putting in /api/ into the list of ignored paths for WP-Minify, which worked well as a workaround. I’ve also alerted Thaya, the plugin author, who will be taking a look to see if it’s possible to not minify certain MIME types.
Forum: Plugins
In reply to: [JSON API] [Plugin: JSON API] exclude doesn't work while include doesThanks for fixing in the latest release – I just upgraded and will be checking back to see if the exclude option works soon.