luckykaa
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can't Upload Images after updating to 3.3Yes, this happened to me as well. It could be an incompatible plugin or theme, so they usually tell you to turn off all your plugins and check and then enable them one by one to see which breaks it, and if that doesn’t work then switch to the default theme and check again. That will tell you where the problem is.
In my case, it was my theme, which I had customized to load a newer version of jquery which was no longer newer and didn’t support whatever they are doing with the media uploader.
Rob
Much appreciated Joost!
Busted for me. Here’s the error. I have disabled it for the moment, will backtrack to the older version shortly until it’s sorted out.
2011/07/07 12:39:34 [error] 2416#0: *223 FastCGI sent in stderr: “PHP Fatal error: Using $this when not in object context in /home/powellrw/public_html/telecomramblings.com/public/wp-content/plugins/google-analytics-for-wordpress/googleanalytics.php on line 986” while reading response header from upstream,
Forum: Plugins
In reply to: [WP-EMail] Trouble with wp-email in 3.0?Nevermind, there was an unanticipated incompatability with the wp-minify plugin.
Forum: Plugins
In reply to: [Plugin: Yet Another Related Posts Plugin] Widget and related_posts() problemFYI, it looks like the problem is that the widget code is outside the loop but is using $post to access the id of the current post. The id it gets is not correct and often invalid, which results in the same list of unrelated posts on each page. I fixed mine, temporarily, by replacing the function widget_yarpp_init with the version velow. Hopefully the author will get a real fix in soon.
function widget_yarpp_init() { if ( !function_exists('register_sidebar_widget') || !function_exists('register_widget_control') ) return; function widget_yarpp($args) { extract($args); global $wpdb, $post; if (is_single() && have_posts()) { while (have_posts()) { the_post(); echo $before_widget; echo $before_title . __('Related Posts','yarpp') . $after_title; echo yarpp_related(array('post'),array()); echo $after_widget; } } } register_sidebar_widget(__('YARPP','yarpp'), 'widget_yarpp'); }
Forum: Plugins
In reply to: [Plugin: Yet Another Related Posts Plugin] Widget and related_posts() problemI have exactly the same problem, has anyone found a solution?