gorbould
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Pretty permalinks: redirects to index.phpWell, I used that suggestion, and found that it had been here all along:
http://wordpress.org/support/topic/49968?replies=25#post-436575
Prepending “index.php” makes everything else work.
/index.php/%year%/%monthnum%/%postname%/
Must be a NetFirms thing, which I’ll complain about.
I’d love to find a way to get that index.php out of the filenames, so all my old posts imported from Blogger will end up in the right place. In the meantime, should I just figure out how to create redirects for all 50 of my old posts?
Forum: Fixing WordPress
In reply to: Permalinks on NetfirmsAh, that works for me also:
/index.php/%year%/%monthnum%/%postname%/
I’d love to figure out a way to get that index.php out of there, though. Otherwise I guess I’ll have to establish redirects from my old Blogger URls.
Forum: Fixing WordPress
In reply to: Pretty permalinks: redirects to index.phpmoshu: Wow, thanks for that link… wish I had read that months ago. But it seems like NetFirms is getting up to speed.
I got this (not terribly helpful) message from their support:
Not all the permalink structures are supported. We recommend one of two that has been tested and proven to work:
Example #1: To have your posts display individually as (for example)
http://yourdomain.com/yourblog/nfblog/2006/02/03/sample-post/
enter the following:/index.php/%year%/%monthnum%/%day%/%postname%/
Example #2: To have your posts display as:
http://yourdomain.com/yourblog/nfblog/archives/123 (this uses the post id), enter:/index.php/archives/%post_id%
So they seem to think it can be made to work… we’ll see. If we can solve that Archives issue, I might be the first 🙂
Forum: Fixing WordPress
In reply to: Lost <p>I found a similar (opposite, actually) bug today on a WP blog I’m helping to edit (www.insidethecbc.com)
In IE 5.5, an extra break was inserted after each hyperlink. Doesn’t show on IE 6 or FireFox. So I’m not surprised that you had this problem in one browser and not another.
Forum: Fixing WordPress
In reply to: Pretty permalinks: redirects to index.phpYou guys are life savers! That fixed it up.
So, now I’m back to where I was. And in fact, I’m one step better. An IT buddy dropped by just before this most recent problem and fiddled with my htaccess file to try different variables.
When I replaced this:
RewriteRule . /blog/index.php [L]
with this:
RewriteRule (.*) /blog/index.php/$1 [L]
…the pretty permalinks started working. Well, they work for the posts, and pages (e.g. About) – but they still don’t work for the Archives.
When I click on September 2006, for example, I get an error page that says “in order to view your homepage, please name your main page “index.htm” (using lower case letters).”
Any suggestions on this? It must be that htaccess business again, no? I can almost taste it… and again, thanks for your advice.
Forum: Fixing WordPress
In reply to: Pretty permalinks: redirects to index.phpThanks for the speedy reply. I’ve followed those steps, and it let me change the two options back – but I’m still getting 500 errors. Anything else I can change?
Forum: Fixing WordPress
In reply to: Pretty permalinks: redirects to index.phpI tried that, and the forward slashes disappear after I hit “Update Options”.
But now I’ve really gone and done it… when I was experimenting with this, I tried removing the “http://” in front (so it looked like your example, above – http://www.gorbould.com/blog) – and that has taken my blog entirely offline! And I can’t even get into the WP control panel.
What can I do?? (weeps quietly…)
Forum: Fixing WordPress
In reply to: Pretty permalinks: redirects to index.phpYes, I installed all the WP stuff in http://www.gorbould.com/blog
Both URI fields have the following:
http://www.gorbould.com/blogI removed my old index.html (from when it was through Blogger) but that didn’t change anything.
Forum: Fixing WordPress
In reply to: Pretty permalinks: redirects to index.phpThe blog is installed in a subdirectory (gorbould.com/blog) but that’s also where it stays – I don’t use WP for the root. Would I still have to make this change? (and if so, could you be more explicit – e.g. is it the wp-config.php file, and how would I change it?)
I was looking again at the .htaccess file. I emptied it out and changed the settings, and I also deleted it, FTPed a blank one, changed the permanlinks settings and chmod 666. This is what WP created, but it doesn’t seem to have much in it:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /blog/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
</IfModule># END WordPress
Should this be sufficient to use the new permalinks?
Forum: Fixing WordPress
In reply to: i WAS using Microsoft Word…I had this problem also. You might want to go back and look at those old posts in different browsers just to be sure. I found that the odd code from Word displayed in Internet Explorer 5.5 and 6, but not FireFox. Then again, you might not care.
I’ve taken to writing in Word, then pasting it into Notepad before pasting it into WP. Loses the formatting, but easier to edit long posts that way. I’ve also found that some programs (e.g. the GroupWise mail client) work better as an in-between step – it keeps basic formatting like bold and italics, but drops the unwanted font codes.
Forum: Fixing WordPress
In reply to: Blogger to WP import – help, I’m so close!Well, turns out I just needed patience. I kept resetting the importer and trying again, and after dozens of tries it eventually made it all the way through. I guess it was just a timeout/communication issue, which shouldn’t have surprised me. Broken pipe errors between Blogger and my host were the reason I switched to WP in the first place.
I did run into some weirdness once the import was done. For some reason it would choose to “skip” whole sections of my archives – so I got just September and October the first and subsequent times. What solved it was changing the datestamp on some old posts to October (thanks, Greasemonkey!) and then running the import again. It grabbed most of them the next time. I changed the dates on a few more, then changed them back in WP, and everything’s spiffy.
Forum: Fixing WordPress
In reply to: Blogger to WP import – help, I’m so close!Thanks, I may have to give that a try. It seems awfully complex for my minimal skills, but it beats losing my posts.