lambic
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Comment spam getting through?I have lots of words there, and usually the whitelist moderation works. This morning was only the 2nd time that some have made it through.
Forum: Fixing WordPress
In reply to: Simple post questionYes you can do that. Remember though that the URIs are relative to the current location unless you precede them with a /
Forum: Fixing WordPress
In reply to: [FYI] Update links 1.5I did receive a response from my email to Ping-o-Matic. It’s a known problem. I guess that means they are working on it or will work on it at some point.
From my research I would say it is not a WP bug. It’s either a Ping-o-Matic problem, or an interfacing problem between the two. Sadly PoM doesn’t seem to have an excellent support forum like this, so this is where the complaints end up.
Forum: Fixing WordPress
In reply to: Is Pingomatic broken?Here is what is being returned from pingomatic for my blog:
HTTP/1.1 200 OK
Date: Tue, 08 Mar 2005 21:01:16 GMT
Server: Apache
Content-Length: 154
Connection: close
Content-Type: text/html; charset=UTF-82005-02-21 14:41:10 | http://blog.wibble.dk/
2005-03-07 06:20:57 | http://oracknows.blogspot.com/
2005-03-01 10:46:45 | http://dosemagazine.blogsome.com/I know for a fact that oracknows has updated more recently than March 7th, and a bunch of other links in my list have updated but are not showing up at all in the response. Some of them are WordPress blogs, as well as MT, Blogger and others.
Forum: Fixing WordPress
In reply to: Problem with images in posts (v1.5)The default theme has a couple of classes do this, they are centered, alignright and alignleft. Use them like this:
<img class="alignright" src="myimage.jpg" />Forum: Fixing WordPress
In reply to: links-update-xml causing slownessheh, thanks, I know how to set up cron jobs, just not sure what the job should be doing. Is it simply wgetting the links-update-xml.php file?
Forum: Fixing WordPress
In reply to: links-update-xml causing slownessCan someone post an example of the cron job?
Forum: Fixing WordPress
In reply to: invalid rss feedphew, that was a journey…
I went from wp-rss2.php to wp-blog-header.php to wp-settings.php and finally tracked it down to the moment when the plugins get loaded. Then I went through each plugin until I tracked it down to random_file.php, which turned out to have a couple of stray ctrl-m characters at the end. Cleaned that up, et voila, a valid rss feed!Forum: Fixing WordPress
In reply to: invalid rss feedHere is the first bit of wp-rss2.php:
<?php
if (!isset($feed) || !$feed) {
$blog = 1;
$doing_rss = 1;
require('wp-blog-header.php');
}
header('Content-type: text/xml; charset=' . get_settings('blog_charset'), true);
$more = 1;
?>
<?php echo '<?xml version="1.0" encoding="'.get_settings('blog_charset').'"?'.'>'; ?>
I tried squishing everything up into 1 php block with no blank lines, but that didn’t make any difference. I also tried commenting out the header call, but that just made things worse.Forum: Fixing WordPress
In reply to: No recent updates?Nevermind, looks like some permissions got changed in the upgrade.
Forum: Fixing WordPress
In reply to: Formatting Questions – images / firefox1) Your slashes are around the wrong way, should be /images/sample.png
2) They are still up too high in firefox.Forum: Fixing WordPress
In reply to: images and padding in postsIn your wp-layout.css:
.post img {
float: right;
border: 1px solid;
padding-left: 1em;
}Forum: Plugins
In reply to: Comment analysis pluginI’ve created a version of this plugin for WordPress 1.3 (alpha-4), as the way of identifying trackbacks and pingbacks is different.
http://www.lambic.co.uk/wp-plugins/ now contains two files:
comment_analysis.phps – the 1.2 version
comment_analysis_1.3.phps – the 1.3 version
If I make changes, I’ll probably do it in the 1.3 version first, then backport it when I get the time.Forum: Fixing WordPress
In reply to: 1.3 questionsThanks, that did the trick. I’m not too bothered about the footer, I’ll pretty it up sometime.
Templates are for wimps πForum: Fixing WordPress
In reply to: 1.3 questions1) Fair enough
2 & 4) ok, I removed the <span> </span> from the header in admin-header.php and that fixed it. No idea why.
3) *gasp* I liked ranking π
The ranks still show in the link manager…