antifuse
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Comments on Permalinked ItemsHrmm… does your wp-includes/template-functions.php have the function allowed_tags() at the bottom of the file?
Forum: Fixing WordPress
In reply to: Moving Archives From B2 to WP..There is a script to upgrade from b2 to WordPress directly, so that you don’t have to do anything in the backend. You can check out the installation FAQ on the WordPress Wiki or you can also check out readme.html in the root directory of the WordPress installation package, it has upgrade instructions as well.
Forum: Installing WordPress
In reply to: New to WordPress 1.0 or 1.01?There should be no need to do 1.0 then 1.0.1 on top… 1.0.1 should work for a clean install just fine.
Forum: Installing WordPress
In reply to: bookmarkletIncidentally, the Anonymous above was me 🙂
Forum: Fixing WordPress
In reply to: registered user commentsUmm… I’m not sure about this, but I thought the comment form used a different cookie from your login cookie. Am I wrong?
Forum: Installing WordPress
In reply to: bookmarkletpodz: If you have the popup blocker turned on in Avant, it will prevent the press-it from working correctly. Just something to keep in mind 🙂
Forum: Installing WordPress
In reply to: bookmarkletWhich, of course, doesn’t meant that it shouldn’t be supported 😛
Oy, too many negatives in that sentence.Forum: Fixing WordPress
In reply to: .htaccess fileI don’t recall seeing one… but then I’ve got my own .htaccess already so maybe I deleted it and just blocked my memory of doing so 😛
Forum: Installing WordPress
In reply to: b2/evolution to WordPressI was originally going to go with B2/Evo… but no matter what I tried I couldn’t get anybody on the forums to help me convert from MT to Evo. Then I checked out the WP forums, and I found people here to be MUCH more responsive to new users. So now I’m a WP zealot 🙂
Forum: Everything else WordPress
In reply to: PostgreSQLUmmm, just out of curiosity (using the LIMIT example) is there an SQL standard for this? Ooooh, I just did a bit of hunting and it appears that LIMIT isn’t a standard SQL keyword, which is why it’s implemented differently across different platforms. BAD database developers, BAD! *bops on the nose with a newspaper*
Forum: Installing WordPress
In reply to: OK, you guys win.I believe he was getting “It looks like you haven’t installed WP yet” errors… he posted in the other IIS thread… and yeah, that was with NT4. I guess eventually we’ll want to support all platforms everywhere, but I’m thinking NT4/IIS4 is probably low in the priority list (since not even MICROSOFT supports NT4 anymore :))
Forum: Installing WordPress
In reply to: Installing WordPress 1.0 on IISI’m going to try this when I get home tonight if I have time… just to try and help out on solving some of these issues for IIS users (don’t want to alienate any possible users! :))
Forum: Plugins
In reply to: Photomatt’s ABBR HackThat link had “IE” in it, which the acronym replacer replaced with an acronym… you can take IE out of the acronym replacer as a workaround for the moment…
Forum: Fixing WordPress
In reply to: permalink error “url not found” on servera good start for debugging rewrite rules is to change the [QSA] to [R=permanent] – that way it will change the address in the address bar so that it shows you to where it is trying to re-direct (that definitely helped me with things when I had broken something). If the address in the address bar doesn’t change, that means that your re-write rule isn’t being caught, which means something in the original regular expression is broken.
Forum: Fixing WordPress
In reply to: .htaccess file@asphodel: The way it works is this – when you put those lines into the .htaccess file, it tells Apache (the web server software) to look for any requests for http://www.yoursite.com/past/day/posttitle (or whatever you decided on for your format) and to re-interpret them to ACTUALLY load the page http://www.yoursite.com/index.php?date=blah&post-title=blah (or whatever the actual formatting is, I’m just paraphrasing here).
The mod_rewrite library is quite a powerful tool… if you ever do something like change your archive formatting (something I have done several times in the past) or change your content management system, you can just add in a re-write rule and all of your old links (if you’ve been indexed by google, as an example) will still work.