Mark Jaquith
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can I block access from a specific URI?Use something like this:
SetEnvIfNoCase Referer the-stupid-site.com stupidsite=yes
deny from env=stupidsiteSee here:
http://codex.wordpress.org/Combating_Comment_Spam/Denying_AccessForum: Installing WordPress
In reply to: IIS Problems / cannot open plugins directoryThat’s an insanely restrictive setup you have there. “fopen, fwrite, fread, file” all forbidden? “mail” forbidden? You really need to contact them and get them to lift some of those restrictions. You’re not going to be able to do much if you can’t even read files.
Forum: Fixing WordPress
In reply to: Can’t get Subscribe-to-comments plugin to workThe checkbox is hidden if you are logged into WP as the author of the entry and replaced with other text (which is customizable in the very latest version, alpha-3).
Clear all your cookies in one browser, and then view the form, to see how it looks to an “outsider.”
Most issues with the checkbox showing twice have to do with people who have previously manually inserted the checkbox into the form.
I just stumbled upon this entry randomly… I’ll be able to respond much more quickly if you just leave a comment on this entry:
http://txfx.net/2005/03/28/wp-subscribe-to-comments-20-alpha-2/Forum: Fixing WordPress
In reply to: A php questionYou can look at
$comment_count_cache[$post->ID]for that. It should be populated for you.Forum: Fixing WordPress
In reply to: How do I allow logins from 2nd computerRemember your password!
Alternatively, click the “Forgot your Password?” link and get it mailed to you.
Forum: Fixing WordPress
In reply to: Changing a header to include an imageYou would enter it in the
<div id="header">...</div>sectionForum: Requests and Feedback
In reply to: “Writing Options” wording suggestionAgreed. I uploaded a patch for it. We’ll see what they think.
Forum: Fixing WordPress
In reply to: Stranger accessing wp-login.php? action=lostpasswordgeorgianlady, Thanks for bringing this issue up. I discovered the problem last night, thanks to your bug report. The problem has been solved in SVN.
Until WordPress 1.5.1, here’s what you need to do to secure your blog against future password changes.
Request a new password for all your WP users using the “Forgot your password?” link on the login form. Each user will get an e-mail. Do not click the link in the e-mail, just delete it. If you do this for every user, you will no longer have any problems.
Forum: Fixing WordPress
In reply to: Blogroll Update Links ProblemIf Ping-O-Matic isn’t updated to grab additional update times from the other aggregrators, I imagine someone will come up with a plugin to add weblogs.com checking.
Forum: Fixing WordPress
In reply to: Mod_Rewrite NightmareStop. Drop. /wp-admin/upgrade.php
I had the same problem. There was an option for html_type added right before 1.5 launch. This designates how pages are sent, and if the option isn’t there, IE will try to download pages. Run the upgrade, and you’ll be fine.
Remember, you should do this EVERY TIME you upgrade. I got lazy and figured nothing changed that needed an upgrade. I was wrong. So do it every time. I’ve learned my lesson.
Forum: Everything else WordPress
In reply to: Server attacked by hackersWhat was the nature of the hack? Could they have compromised your site via another web app?
Forum: Fixing WordPress
In reply to: sql help for excerptsJust use <?php the_excerpt(); ?> in your test.php file. If an excerpt doesn’t exist, WP will create one. get_the_excerpt() is a function that returns, so it won’t do anything useful by itself.
You were likely doing this:
echo $post->the_excerpt;
Which grabs the specified excerpt. You have to use the_excerpt() function to have it make one in case you haven’t provided one.
Forum: Fixing WordPress
In reply to: drop-down menu for sub-categoriesForum: Plugins
In reply to: a plugin hook for trackback?Looks like you could hook in at do_action(‘trackback_post’, $wpdb->insert_id);
You could either grab the info from the DB, or use the global that should still be floating around… $comment_content, I think.Forum: Plugins
In reply to: Style Switcher ProblemSeems to work for me…