Forum Replies Created

Viewing 15 replies - 1 through 15 (of 39 total)
  • Thread Starter zbrob

    (@zbrob)

    I tried, but everything seems corrupted. It also seems that my db was too filled with data. I’m jumping hosts soon, so it should be over by next week 😛 Thanks for the thinking.

    Thread Starter zbrob

    (@zbrob)

    Okay, so it’s the database. Does anyone know how I can work around this? I want to keep the posts in their correct catID, of course, but if I can’t get WP to work correctly, there’s no way I’m assured of safety. And backups are impossible, as the data is corrupted thanks to a fault in the db.

    Forum: Plugins
    In reply to: adding img into kses

    Does this need PHP fu or something? I saw that textpattern allows you to set the maximum width, but I don’t know if that was a normal install.

    Forum: Plugins
    In reply to: adding img into kses

    I hope anyone does, to be honest.

    Forum: Plugins
    In reply to: adding img into kses

    Very just question, Chad. /me is curious too.

    Thread Starter zbrob

    (@zbrob)

    Yeah, I did. Odd problem. Hanni has the same problem, but I don’t know for her if she ran it. For me, it didn’t help anyway.

    Thread Starter zbrob

    (@zbrob)

    Grumble*cough*bump*cough*mutter.

    Thread Starter zbrob

    (@zbrob)

    *cough*bump.

    2 is one I can answer. This allows you to build “static” pages (though the mailing list is discussing this), which can be called via “page/Name_Page”, or with 1.3a4 and up via “/” anything you prefer really.

    Thread Starter zbrob

    (@zbrob)

    Anyone?

    It’s because of WP’s correcting faulty XHTML. Kill that option under Writing and it shouldn’t be happening again.

    I’m using static pages instead of WordPress’s function, and I just make a variable before I call wp-header.php. That variable contains my preferred title, and then I call it like this:
    <title>Zooiblog<?php if($variable) { echo $variable; } ?></title>
    Works like a charm.

    Thread Starter zbrob

    (@zbrob)

    Sorry for the *bump*.

    Thread Starter zbrob

    (@zbrob)

    Add in this:
    My mod_rewrite doesn’t get the years, months and days.
    Take a peek:
    # BEGIN WordPress
    RewriteEngine On
    RewriteBase /b/
    RewriteRule ^feed/?([_0-9a-z-]+)?/?$ /b/index.php?feed=_$1 [QSA]
    RewriteRule ^comments/feed/?([_0-9a-z-]+)?/?$ /b/index.php?feed=_$1&withcomments=1 [QSA]
    RewriteRule ^page/?([0-9]{1,})/?$ /b/index.php?paged=$1 [QSA]
    RewriteRule ^site/([^/]+)/(feed|rdf|rss|rss2|atom)/?$ /b/index.php?pagename=$1&feed=$2 [QSA]
    RewriteRule ^site/([^/]+)/page/?([0-9]{1,})/?$ /b/index.php?pagename=$1&paged=$2 [QSA]
    RewriteRule ^site/([^/]+)/?$ /b/index.php?pagename=$1 [QSA]
    RewriteRule ^search/(.+)/(feed|rdf|rss|rss2|atom)/?$ /b/search.php?s=$1&feed=$2 [QSA]
    RewriteRule ^search/(.+)/page/?([0-9]{1,})/?$ /b/search.php?s=$1&paged=$2 [QSA]
    RewriteRule ^search/(.+)/?$ /b/search.php?s=$1 [QSA]
    RewriteRule ^archives/category/(.+)/(feed|rdf|rss|rss2|atom)/?$ /b/index.php?category_name=$1&feed=$2 [QSA]
    RewriteRule ^archives/category/(.+)/page/?([0-9]{1,})/?$ /b/index.php?category_name=$1&paged=$2 [QSA]
    RewriteRule ^archives/category/(.+)/?$ /b/index.php?category_name=$1 [QSA]
    RewriteRule ^archives/author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$ /b/index.php?author_name=$1&feed=$2 [QSA]
    RewriteRule ^archives/author/([^/]+)/page/?([0-9]{1,})/?$ /b/index.php?author_name=$1&paged=$2 [QSA]
    RewriteRule ^archives/author/([^/]+)/?$ /b/index.php?author_name=$1 [QSA]
    RewriteRule ^archives/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$ /b/index.php?year=$1&monthnum=$2&day=$3&name=$4&tb=1 [QSA]
    RewriteRule ^archives/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$ /b/index.php?year=$1&monthnum=$2&day=$3&name=$4&feed=$5 [QSA]
    RewriteRule ^archives/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$ /b/index.php?year=$1&monthnum=$2&day=$3&name=$4&paged=$5 [QSA]
    RewriteRule ^archives/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/?([0-9]+)?/?$ /b/index.php?year=$1&monthnum=$2&day=$3&name=$4&page=$5 [QSA]
    RewriteRule ^archives/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$ /b/index.php?year=$1&monthnum=$2&day=$3&feed=$4 [QSA]
    RewriteRule ^archives/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$ /b/index.php?year=$1&monthnum=$2&day=$3&paged=$4 [QSA]
    RewriteRule ^archives/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$ /b/index.php?year=$1&monthnum=$2&day=$3 [QSA]
    RewriteRule ^archives/([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$ /b/index.php?year=$1&monthnum=$2&feed=$3 [QSA]
    RewriteRule ^archives/([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$ /b/index.php?year=$1&monthnum=$2&paged=$3 [QSA]
    RewriteRule ^archives/([0-9]{4})/([0-9]{1,2})/?$ /b/index.php?year=$1&monthnum=$2 [QSA]
    RewriteRule ^archives/([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$ /b/index.php?year=$1&feed=$2 [QSA]
    RewriteRule ^archives/([0-9]{4})/page/?([0-9]{1,})/?$ /b/index.php?year=$1&paged=$2 [QSA]
    RewriteRule ^archives/([0-9]{4})/?$ /b/index.php?year=$1 [QSA]
    RewriteRule ^archives/?$ /b/archive.php [QSA]
    RewriteRule ^linkness/ /b/linkness.php [QSA]
    RewriteRule ^about/ /b/about.php [QSA]
    RewriteRule ^syndicate/ /b/syndicate.php [QSA]
    RewriteRule ^extra/ /b/extra.php [QSA]
    # END WordPress
    Thank you.

    Thread Starter zbrob

    (@zbrob)

    You damned nitpickers! The site isn’t done yet. I killed the correct .htaccess etc. etc. etc, so I’ll have to fix it.

Viewing 15 replies - 1 through 15 (of 39 total)