trickleup
Forum Replies Created
-
I’m noticing the same. In fact, no thumbnails are created, or uploaded to s3. Is this behavior by design, or is it a bug?
Forum: Plugins
In reply to: [Amazon S3 Uploads] Folders missed during uploadI have the exact same issue as JamesHillard. I’ve pinged the website plenty, and even accessed wp-cron.php directly, but no more files are uploaded beyond the inital batch.
Forum: Plugins
In reply to: [Plugin: wp e-Commerce] trouble with thematic sidebar on single product pageI had the same problem using a thematic theme child theme. The problem I found that was causing this was that the wpsc_all_products_on_page (in wpsc-includes/theme.functions.php) action that wpsc adds to the template_redirect hook exits at the end of running, therefore disabling all template_redirect actions that are scheduled to run after this action.
Among the actions that don’t run are thematic_connect_functions() on priority 10, which is why the sidebars don’t show.
I solved it by doing this (removing the action):
function stop_wp_ecommerce_from_messing_up_wordpress() { remove_action('template_redirect', 'wpsc_all_products_on_page'); } add_action('template_redirect', 'stop_wp_ecommerce_from_messing_up_wordpress', 1);
I’m not sure whether this messes up something else, I have yet to test it thoroughly. The exit() call seems like bad design.
Forum: Hacks
In reply to: WordPress deletes text_widget settings in wp_optionsI have not, unfortunately. I stopped looking into it, thinking someone must have solved it before me. If I have time and solve it I’ll post the solution here.
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Slideshow does not work in 2.9I’m having the same problems… ouch. Does anyone know a workaround?
Forum: Plugins
In reply to: Wordtube can’t upload media behind .htaccess blockIt was a mysql permission issue. Sorry.
Forum: Plugins
In reply to: Wordtube can’t upload media behind .htaccess blockWordPress version 2.8.3. Forgot to mention that.