error
Forum Replies Created
-
Forum: Requests and Feedback
In reply to: Developer’s Blog irrelevant?I religiously download nightlies. And I found WordPress because badnarik.org uses it. I’ve never had a problem with the nightlies that I wasn’t able to fix myself, post to the forums, and have somebody come along and commit it back to CVS. OK, so it’s only happened once. 🙂
So here’s my update: 2004-11-11 rocks.Forum: Everything else WordPress
In reply to: MS IE is gone… or is it?You have probably got some kind of spyware on your computer. Run an anti-spyware program (or two or three) until your system is clean.
Forum: Fixing WordPress
In reply to: Amazon wishlistMy wishlist is so long that if I put it in the sidebar it would take a week for the page to load. 🙂 So I just added a Link to it.
Forum: Installing WordPress
In reply to: OK, its running, now what?The Loop is probably the SECOND place I’d start. The first being wp-layout.css. Or at least that’s how I started. Then I moved into The Loop, and wp-sidebar.php, wp-footer.php, etc. Gradually my blog is starting to look less and less like the default installation and more like I want it to look.
Forum: Installing WordPress
In reply to: blank pageI had the same trouble (blank pages after install) using Apache2, PHP5 and MySQL. The only solution I was able to find was to use a 1.3-alpha build. It’s pretty well known that 1.2mingus doesn’t like PHP5. Fortunately the latest builds have been really stable and work well. http://www.wordpress.com/nightly/
Forum: Fixing WordPress
In reply to: Little tip to avoid nervous breakdown with pagesHere’s another tip for eliminating headaches: Make sure the server can write to your .htaccess file! This drove me nuts while I was trying to get static pages working, until I realized what the problem is. If you cannot make your .htaccess file writable by the server you will have to copy and paste the rewrite rules EVERY TIME you add or change something or your permalinks won’t work.
Forum: Fixing WordPress
In reply to: A simple question.Oh crap, I’m still not used to XHTML. Those should have
/>at the end of each<imgelement.Forum: Fixing WordPress
In reply to: Is it sure 1.3?You rolls the dice and you takes your chances.
I had so much trouble getting 1.2.1 to install properly that installing 1.3-alpha-4 turned out to be the only solution that worked. Fortunately for me, it appears to be quite stable. That could change on a nightly basis, though.:-)Forum: Fixing WordPress
In reply to: [Bug] CookiesHmmm. Maybe it is. Test this:
Does it show you logged in when you visit http://yoursite/ but NOT show you logged in when you visit http://yoursite/index.php ?Forum: Fixing WordPress
In reply to: Comments for static pages?Leave it to me to eventually figure it out myself. The reason it went back to the main page was an omission in wp-includes/template-functions-links.php
Change line 53 to read:
return get_page_link($id);
Voila! I can now comment on static pages, and everything works! Feel free to do whatever you wish with this hack.Forum: Fixing WordPress
In reply to: Comments for static pages?Hm, as it turns out, this isn’t actually implemented! So I went and implemented it. Here are the changes required:
In wp-includes/template-functions-comment.php
Change line 28 to read:
if ( is_single() || is_page() || $withcomments ) :
Change line 103 to read:
if (! is_single() && ! is_page()) {
Now I can post comments to my static pages, but after I hit “Say it!” I get redirected back to the main page, rather than to the static page I was looking at. Any ideas?Forum: Fixing WordPress
In reply to: [Bug] CookiesI don’t see what the problem is. It sounds like it’s working as it should. If it isn’t, what is the trouble you’re having?
Forum: Fixing WordPress
In reply to: Pages in WP 1.3?I just want users to be able to comment on my pages. I’d also like to be able to edit the timestamp, but that’s another topic….
Forum: Fixing WordPress
In reply to: How do I upgrade?Depends on how major the changes to your php/css files are. I just took a diff of my files against the original installation files, and applied the patch to the new version right before installing it smack on top of the old one. 🙂 This probably isn’t easy to do with a hosted site unless you have a really good FTP client.
Forum: Fixing WordPress
In reply to: new nightly build outAlpha, perhaps, but I’ve been running 2004-11-02, and now 2004-11-11, with only one relatively trivial problem, which I’ll report elsewhere.