rantor
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Importing Blogrolling OPML Bug?This version will accept links with or without the lastmod field, but you need to change the array indices to match.
preg_match_all(‘/<outline text=”(.*?)” type=”(.*?)” url=”(.*?)” (lastmod=”(.*?)”|) target=”(.*?)”*? \/>/’,$opml,$items);
$names = $items[1];
$types = $items[2];
$urls = $items[3];
$titles = $items[5];
$targets = $items[6];Forum: Fixing WordPress
In reply to: Apache 2.0, virtual() and gzip?I’m using virtual() to bring in CGI stuff that needs a query string passed in. Don’t think include() does that.
Forum: Requests and Feedback
In reply to: Comment Spam StuffI just started getting these, too. Looking over the access logs, all 3 comment spams have one thing in common: no referrer. I think I’m going to hack the comment handler to drop anything not referred by my base URL. Maybe it should be even more stringent and drop comments not referred by the parent post’s comment URL.
Raising the bar…Forum: Installing WordPress
In reply to: b2 Upgrade errorOh, nevermind! (note to self: RTFM!)
Forum: Installing WordPress
In reply to: b2 Upgrade errorI’ve got a wierd and similar error. I ran b2-2-wp.php and got [table b2.options does not exist]. I did create and edit a wp-config.php, and I left my table_prefix blank. If I put ‘b2’ in there, I see [table b2.b2options does not exist]. I’ve grepped from hell to breakfast and can’t find where that ‘b2.’ is getting prepended. WordPress-072-gold. Ideas? Please?