marc_m
Forum Replies Created
-
Forum: Alpha/Beta/RC
In reply to: WordPress/plugin upgrade@siggma Nice one, thanks! Hadn’t noticed some of my directory ownerships were wonky. Fixed it for me.
Forum: Plugins
In reply to: Error using add_filter(‘pre_option_widget_text’, ‘function’)solved… somewhat.
my function was:
function some_function($content) { return "filtered the widget text"; //var_dump($content); die(); }commented out the return and used var_dump showed that $content was a bool. Not what i was expecting as the widget_text option.
looking in wp code (wp-includes/widgets.php) i saw a direct filter for ‘widget_text’ that looks like it should work.
my goal is to filter the widgets text before it is written to the DB and again before display to screen. If anyone has an example or knows other/better filters to use, let me know. Thanks
Forum: Requests and Feedback
In reply to: Feedback/Critiquethe menu is pretty cool – and i’m thrilled it does not use flash!
Forum: Fixing WordPress
In reply to: HTTP Error in media upload tool@petercoughlin Thx, this worked for me on my hostgator acct.
Anyone know if there are security issues in adding these lines to .htaccess?
Forum: Fixing WordPress
In reply to: WP 2.5 gallery won’t make some thumbnailsi had a similar problem, some thumbnails were not displaying on the site only the original size image. But looking at the uploads directory, the thumbnails were actually created and uploaded.
this would seem to rule out gd as the problem, true? any ideas where else it may be getting confused?
note: i tried simply opening the problem images in gimp and saving, then they work fine.