Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)
  • 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];

    Thread Starter rantor

    (@rantor)

    I’m using virtual() to bring in CGI stuff that needs a query string passed in. Don’t think include() does that.

    I 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…

    Oh, nevermind! (note to self: RTFM!)

    I’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?

Viewing 5 replies - 1 through 5 (of 5 total)