Mark Jaquith
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can not UPload pixlooks like you’re not alone: http://mosquito.wordpress.org/bug_view_page.php?bug_id=0000393
Forum: Fixing WordPress
In reply to: Perminant articles?This feature is currently availible in WordPress 1.3 which is currently in CVS. If you are adventurous, you could upgrade to a recent nightly build, or just wait until 1.3 is released.
Actually, you might want to wait a few weeks anyway, as there has been a lot of development of those features lately.Forum: Plugins
In reply to: Posting to site with email automaticallyYou can set up a cron job to “get” that URI every so often. Talk to your host about the availibility of cron jobs on your server.
Sometimes they have a nice friendly way of setting it up in your control panel, otherwise you need to telnet or ssh in and set it up that way.Forum: Plugins
In reply to: Redirect to 404?Hm… this isn’t my forte, but can’t you just send the 404 header and then include your 404.php page?
<?php header (“HTTP/1.0 404 Not Found”);
include(‘/path/to/404.php’);
exit();
?>Forum: Plugins
In reply to: wp-login.php, index.php fixI believe this is fixed in 1.3 CVS. I’m using 1.3 CVS and my edit entry / edit comment links work fine (I also have WP in a subdir)
Forum: Requests and Feedback
In reply to: dropdown_links template taghttp://wiki.wordpress.org/get_links
note that if you want to set the 5th parameter, you need to include settings for parameters 1 through 4.Forum: Fixing WordPress
In reply to: Archive only shows 20 posts instead of 21.What version of WordPress are you using? You may have WP set to display “posts paged” and not be putting in the “previous/next” page links.
http://wordpress.org/support/7/14100
http://wiki.wordpress.org/posts_nav_linkForum: Plugins
In reply to: Simple hack for level-based comment approvalJust FYI: in WordPress 1.3 CVS, the “comment_post” hook has been moved after where $approved is set to 1 or 0. So basically you’ll be able to put that code into a plugin and access the global $approved and “overturn it” and alter the comment_approved status of the new comment in the database.
Forum: Fixing WordPress
In reply to: Cannot edit commentsOne thing I see:
SELECT post_content FROM wp_posts WHERE id=”
Shouldn’t that be “ID” (capitalized)?
How did you “roll back” to 1.2?
The error on that post seem to be inside of <p class=”postnav”>
It is your latest entry, so maybe you have some “previous/next” link code that hiccups on the latest entry (for which there IS no next entry).Forum: Themes and Templates
In reply to: Editing the Comments Pagethe one you want to edit is
wp-comments.php
Make a backup copy of your original file in case you break it and can’t get it working again. 🙂Forum: Fixing WordPress
In reply to: Options can’t be saved, can’t logoutTry flushing your WP cookies from your browser. If that still doesn’t work, reupload the code, as there might have been an error there.
Forum: Plugins
In reply to: Witty Text & Hello Dolly lyrics, php witty??“Anywhere on your template” means “anywhere in the index.php file” as this is the file that “displays” your weblog. Try pasting that code somewhere in there and uploading the modified file.
Forum: Fixing WordPress
In reply to: Perma-links, trackback not workingI’m no expert, but I did some googling, and found this:
PATHINFO
This will not be available if the AcceptPathInfo directive is explicitly set to off. The default behavior, if AcceptPathInfo is not given, is that mod_cgi will accept path info (trailing /more/path/info following the script filename in the URI), while the core server will return a 404 NOT FOUND error for requests with additional path info. Omitting the AcceptPathInfo directive has the same effect as setting it On for mod_cgi requests.URIs such as that trackback one with “/something” after the “.php” are fetched by WordPress using PATHINFO. Perhaps it has been turned off for your server…
Forum: Fixing WordPress
In reply to: Moderating All PostsFor this, you’ll have to use a recent verson of WordPress 1.3, which is currently a work in progress.
This allows you to set an option that users of a certain level (I think it’s level 1, but don’t quote me) may submit drafts for administrator approval.Forum: Fixing WordPress
In reply to: Full name of author