zbrob
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Categories query broken?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.
Forum: Fixing WordPress
In reply to: Categories query broken?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 ksesDoes 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 ksesI hope anyone does, to be honest.
Forum: Plugins
In reply to: adding img into ksesVery just question, Chad. /me is curious too.
Forum: Fixing WordPress
In reply to: Problem with calling comment_type (1.3a3)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.
Forum: Fixing WordPress
In reply to: Problem with calling comment_type (1.3a3)Grumble*cough*bump*cough*mutter.
Forum: Fixing WordPress
In reply to: Problem with calling comment_type (1.3a3)*cough*bump.
Forum: Fixing WordPress
In reply to: Two (maybe stupid) questions2 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.
Forum: Fixing WordPress
In reply to: Problem with calling comment_type (1.3a3)Anyone?
Forum: Fixing WordPress
In reply to: The ‘more’ link eating my wordsIt’s because of WP’s correcting faulty XHTML. Kill that option under
Writingand it shouldn’t be happening again.Forum: Fixing WordPress
In reply to: Static Page with < title > ?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.Forum: Fixing WordPress
In reply to: Alternate archive troubleSorry for the *bump*.
Forum: Fixing WordPress
In reply to: Alternate archive troubleAdd 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.Forum: Your WordPress
In reply to: Me again: worn, Jamaica, 70sYou damned nitpickers! The site isn’t done yet. I killed the correct .htaccess etc. etc. etc, so I’ll have to fix it.