jazzpdx
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: WP-FB-AutoConnect] bp_core_fetch_avatar_filterOnly appeared after adding the autoconnect plugin
Forum: Plugins
In reply to: [Plugin: W3 Total Cache] Blank pageThanks for the fix – the newest update solves the problem. Issue is resolved.
Forum: Plugins
In reply to: [Plugin: W3 Total Cache] Blank pageTried clearing the error log out and loading the problem page. Tried multiple times – each time, blank page persists, no additions to error log.
Forum: Plugins
In reply to: [Plugin: Regenerate Thumbnails] This plugin is buggy and incompleteFantastic – even less work for me!
Thanks so much (from a fellow Portlander)
Forum: Plugins
In reply to: [Plugin: W3 Total Cache] Blank pageAlso having a blank page problem, even with no other plugins turned on and the caching options within the W3 plugin turned off. Submitted a report with the plugin’s support tab but haven’t heard anything back.
Forum: Plugins
In reply to: [Plugin: Regenerate Thumbnails] This plugin is buggy and incompleteThanks for the quick response. I’ll work on just grabbing the post IDs – that sounds like the best option.
And yes, it makes sense that the AJAX-recode solves the issue of time-outs and memory limits while converting the images, but unfortunately it never gets to that point since it has to spit out a list of all the images first.
Great plugin – very handy to have a template to work with and only have to do a re-write to scale it rather than having to start from scratch
Forum: Plugins
In reply to: [Plugin: Regenerate Thumbnails] This plugin is buggy and incompleteI’m having the same issue with the blank page with no progress bar. However, I’ve narrowed down the problem.
The issue occurs at the call:
$images =& get_children( array( 'post_type' => 'attachment', 'post_mime_type' => 'image', 'numberposts' => -1, 'post_status' => 'inherit', 'post_parent' => null, // any parent 'output' => 'object', ) );
The site is pretty large and thus has a huge number of attachments. The progress bar appears and everything works if I change numberposts to 1000. 2000 does not work. Seems to be a memory issue of some sort – is there a way to paginate that first request?