etoile
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Code Injection Discovered (WP 2.3.3)I believe this happened to me too. I was running 2.3 (too lazy to upgrade) and I just noticed a false post created a couple of weeks ago. It actually used to have some content but I don’t remember what it was; it got over-written by the spam injection. Sigh. I’ve upgraded to 2.5.1 and hopefully that will help.
Forum: Fixing WordPress
In reply to: Show the Tag Cloud Outside of the Blog?Perhaps you could create it as a page (using any of the many plugins that allow php in pages) and then simply include that page wherever you’re wanting it to show up?
Forum: Themes and Templates
In reply to: Display ALL tags w/ tag cloud?Setting it to 0 does NOT work for me. When I do that, it displays nothing. I can’t do 999 either. I did some testing and it looks like I can only do up to number=225 if I want it to actually display anything. However, my wp_tags table has 417 rows (which is the number I got when I did the conversion from UTW, too). Why can’t I display all my tags? I’m thinking that since I’m working on orders of magnitude less than 100,000 I should be able to do it without increasing the memory.
Forum: Plugins
In reply to: Live Press with WP 2.1That file is gone, but if you still have it I’d be happy to host it on my server.
Forum: Fixing WordPress
In reply to: Is it possible to downgrade from 2.2?What is the plugin that disables widget-readiness? I’m having issues with 2.2 as well and I’d like to try that as part of my troubleshooting process.
Forum: Plugins
In reply to: How to make King Text widget work in 2.2Unfortunately Otto’s fix for the widgets.php doesn’t work with King Text, and like BigDog the fix by mxv that started this thread doesn’t work either. I don’t mind switching to the execphp widget by Otto, but how can I get the PHP code out of the King Text widgets that I used previously? I don’t know where this is stored.
Forum: Plugins
In reply to: Postalicious not connecting to del.icio.usUnfortunately I don’t remember what it was, but the author of Postalicious is VERY responsive so you might try contacting him.
Forum: Fixing WordPress
In reply to: Turning off the auto saveFor the record, I got this while leaving an editing window (for a page) open overnight. I just tried saving it again without leaving it untouched for so long and it was fine.
Forum: Fixing WordPress
In reply to: Cannot edit posts or pagesOh how embarrassing! It didn’t even occur to me that it might be a plugin. Thanks for mentioning that – as soon as you did I knew it was the Kill Preview plugin that I had added recently.
All is well now, thanks for the help!
Forum: Plugins
In reply to: Live Press with WP 2.1I am still getting the “argument must be an array” thing. That’s always been a symptom of class-IXR.php issues, but no matter what version of class-IXR.php I use, I can’t get rid of the errors.
Forum: Plugins
In reply to: Live Press with WP 2.1Oh dear, my class-IXR.php seems not to work as expected! Has anybody got a copy that works with Live+Press 1.99?
Forum: Plugins
In reply to: Postalicious not connecting to del.icio.usWhoops! It was an issue with my PHP installation, rather than Postalicious or WordPress. Nevermind!
Forum: Plugins
In reply to: Starting my own digg type site…You might want to check out Pligg.
Forum: Plugins
In reply to: Live Press with WP 2.1If you still need the old class-IXR file, I think I’ve got it.
Forum: Plugins
In reply to: Compatibility between Image Headlines plugin and Sidebar WidgetsI managed to do it, with the ALA Dynamic Text Replacement script. It’s not pretty, but it does achieve the goal of images created on-the-fly from text, and it can be made to match the Image Headlines output.
<?php
if ( function_exists("register_sidebar") )
register_sidebar(array("name"=>"Sidebar 1",
"before_widget" => "<br />",
"after_widget" => "<br />",
"before_title" => "<img src='https://www.domain.com/path/to/heading.php?text=",
"after_title" => "' />",
));
?>