paul
Forum Replies Created
-
Forum: Installing WordPress
In reply to: 1.5.12 and ectoWould it be too much trouble to bump version numbers when you introduce fixes? It makes it a lot easier to assess what needs to be done if the versions are coherent. 1.5.1.3 as it is now should be 1.5.1.4, in my book.
I’m not moving from 1.5.1.2 until this gets resolved for ecto users: we’ve already had to patch xmlrpc.php for that release to work properly.
Forum: Fixing WordPress
In reply to: problems with XMLRPC interfaceThis is what I have ended up with: I leave the first block (starting at 530) alone and just change the one starting at 583:
583 } else {
584 if (!($post_category)) {
585 $post_category[] = 1;
586 }
587 }
That seems to make re-posting or updating work as it should (ie, quickly).
and I just tested it with a new posting: seems to work there too.
Forum: Fixing WordPress
In reply to: problems with XMLRPC interfaceis this resolved to anyone’s satisfaction? I’m not sure just commenting out those else blocks at line 530 and 583 are doing it. Posts and re-posts are very slow: they actually seem to timeout in ecto. the changes do stick but ecto just spins.
Forum: Fixing WordPress
In reply to: Blank lines at top of feeds: breaking validation – how to fix?Well, that does resolve it. I don’t know what to make of that. I’ll see if adding themes back as well as plugins breaks anything.
Forum: Fixing WordPress
In reply to: Blank lines at top of feeds: breaking validation – how to fix?So what’s the deal here? some sites validate out of the box[tm] and others don’t?
I could reinstall but there should should some less onerous way of resolving this.
Forum: Fixing WordPress
In reply to: Blank lines at top of feeds: breaking validation – how to fix?I guess you missed the part where I disabled all plugins and it still failed? and where I replaced the php files with fresh ones from a new download?
It’s all very well to say no aggregators choke on the feed: but does it validate? I don’t want to go with RSS where we once were with HTML: works here, doesn’t work there.
Forum: Fixing WordPress
In reply to: Help with RSSUm, it would have been more helpful if you mentioned which plugin was causing the problem.
Forum: Themes and Templates
In reply to: what does wp_meta do?I am finding that wp_meta displays in my pages. It looks like if I touch the options in text-control, the choices pop up.
Forum: Your WordPress
In reply to: New Theme — **Not safe for viewing at work**https://www.tuckle.net/index.php?wptheme=Squat%20Girl will get it for you . . . .
Not too “unsafe” . . .
Forum: Requests and Feedback
In reply to: posting from 43 Things to WP??Hmm, the robots at Robot Co-op (creators of 43 Things) hint that WP support is real close on their end . . . . . so consider this wish granted.
Forum: Fixing WordPress
In reply to: comments not posting/inserting into databaseI thought I had tested this already, but it seem WP-Blacklist is the issue. If I take that out of the loop and bounce apache, comments go through. I’m not sure if the blacklist is somehow too tight or if the plugin itself is doing it.
Forum: Fixing WordPress
In reply to: Mass Edit Comments – Delete isn’t workingYup, that worked for me too: any chance this could be distributed as 1.2.1p1?
Forum: Fixing WordPress
In reply to: Mac Software?I was a beta tester for the new version of ecto and it works just fine with WP (especially if you add the file upload patch mentioned above.
The older version works fine but 2 (available in public beta now) is well worth getting.Forum: Plugins
In reply to: Recent comments w/ portion of commentI got a copy of this from someone else, since MtDew’s site is currently disassembled. I made a couple of small tweaks to make it more of a drop in item (specifically, I added a title/header, expanded the length of the comments, and made it output a list like the other sidebar items).
--- recent_comments.php.orig Thu Jul 22 22:17:52 2004
+++ recent_comments.php Thu Jul 22 22:17:47 2004
@@ -8,13 +8,13 @@
Author URI: https://mtdewvirus.com/
*/
-function get_recent_comments($no_comments = 5, $comment_lenth = 5, $before = '- ', $after = '
- ', $after = '
', $show_pass_post = false, $comment_style = 0) {
+function get_recent_comments($no_comments = 5, $comment_lenth = 25, $before = '', $show_pass_post = false, $comment_style = 0) {
global $wpdb, $tablecomments, $tableposts;
$request = "SELECT ID, comment_ID, comment_content, comment_author, post_title FROM $tablecomments LEFT JOIN $tableposts ON $tableposts.ID=$tablecomments.comment_post_ID WHERE post_status = 'publish' ";
if(!$show_pass_post) $request .= "AND post_password ='' ";
$request .= "AND comment_approved = '1' ORDER BY comment_ID DESC LIMIT $no_comments";
$comments = $wpdb->get_results($request);
- $output = '';
+ $output = '<li id="comments">Recent comments:<ul id="recent_comments">';
foreach ($comments as $comment) {
$comment_author = stripslashes($comment->comment_author);
$comment_content = strip_tags($comment->comment_content);
@@ -32,6 +32,7 @@
$output .= '" title="View the entire comment by ' . $comment_author.'">' . $comment_excerpt.'' . $after;
}
}
+ $output .= '
';
echo $output;
}
?>
I’d like to merge the two presentations so that the post, the author, and the comment itself appear: do I post any changes here or is there a Better Way?
PS: WordPress rocks!Forum: Fixing WordPress
In reply to: Comments NotificationWell, this is interesting. I toggled the setting off (it was on), saved it, toggled it back on, and when I replied to a comment I found, I got an email notification.
So perhaps the toggled on bit in the UI is not really indicative of how things are under the hood.