Matt Fiocca
Forum Replies Created
-
yeah, the custom sizes were being created on the server.
I actually just nuked my custom sizes for this project and opted to work with the defaults from WordPress. This project has been out of our shop for a little while now though, so i won’t be returning to it to test anything further on this. I appreciate the feedback.
thanks for the reply. im not sure if we’re messing something up then, because only the original sizes added by wordpress get pushed to s3. im away from the code atm, but will try to paste how we’re adding sizes, although I feel its a pretty typical setup.
Forum: Plugins
In reply to: [WP About Author] Double Slash Breaks CDNi should point out that i’m using W3 Total Cache that rewrites our blog url with our CDN url, in case there was any confusion in that regard
Forum: Plugins
In reply to: [WP About Author] Double Slash Breaks CDNmy recommendation to the plugin author is to remove the slashes in front of the image paths in lines 131 to 142 in wp-about-author.php: e.g.
WPAUTHORURL_URL .'/images/twitter.png'becomes
WPAUTHORURL_URL .'images/twitter.png'Forum: Hacks
In reply to: plugin.php and wp_filter causing an infinite loopI was having the same issue and came across this post. My logs were clogged with 1GB+ of these error lines. I’m sure you came to the same fix, but i just wanted to post this for semantics sake. change
while ( next($wp_filter[$tag]) !== false );to:
while ( is_array($wp_filter[$tag]) && next($wp_filter[$tag]) !== false );