Mark Jaquith
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: long URL in website field – CommentTry a long URI without an ampersand (&). I’m going on a hunch here.
Forum: Plugins
In reply to: 1.5.1.3 – remote code execution 0-DDAAYY exploitCode has been checked in to safely initialize all variables that could “leak” through on systems with register_globals on. Like you said, setting the phpflag isn’t possible on all systems. A universal solution is the goal.
By all means, look at the new code and utilize the Trac bug reporting system to contribute improvements.
Forum: Plugins
In reply to: 1.5.1.3 – remote code execution 0-DDAAYY exploitA patch has been created and should be committed soon. Actually, the idea is to completely kill all register_globals type exploits.
Forum: Fixing WordPress
In reply to: mysql errors with wp-mail after upgrade to 1.5.1.3 from 1.5.1.2Bumped your bug report up for the devs to see. Seems like an issue of the content just not being escaped.
As a temporary fix for you, try adding this in a plugin (or at the top of wp-mail.php):
add_filter('phone_content', 'addslashes');
Forum: Fixing WordPress
In reply to: WP is Pingspamming Some Poor GuyHeatsink,
Please keep in mind that Kramer is very much work-in-progress code. I’ve been working on it a lot in the last week, and a lot of my coding time is going towards reducing redundant pings.
Your blog seems to be failing to update the “last updated” setting.
I didn’t write the section of code in question (two man project), but I think I have it nailed, and I’ll get the fix out in the next version.
Forum: Plugins
In reply to: Confliction between OSA & Spelling Checker Plugin!!And for all you plugin authors: use a class for your plugin, or at least use prefixes for your functions and global variables.
Forum: Fixing WordPress
In reply to: [wp1.5] archive link not working with mod_rewriteI seriously doubt that search engines care.
Forum: Fixing WordPress
In reply to: Sorry, no posts matched your criteriaYou should always use
<?phpand not<?I’d also recommend using absolute paths. I find that it’s easiest to use $_SERVER[‘DOCUMENT_ROOT’]
<?php require_once($_SERVER['DOCUMENT_ROOT'] . '/sweetblog2/index.php'); ?>Or something like that.
Forum: Fixing WordPress
In reply to: Sorry, no posts matched your criteriaWhat’s the problem? That second link works, and that’s where your blog is supposed to be.
Forum: Everything else WordPress
In reply to: Gravatar DownThat should just mean that the Gravatar images don’t load. If you’re worried about that, use Skippy’s plugin which caches the images on your server.
Forum: Fixing WordPress
In reply to: 2 default categories?Get the Greasemonkey extension for FireFox, learn JavaScript, and modify this to do what you like. That’s what I’d do!
http://www.benjaminadam.com/downloads/052305/wordpressuncheck.user.js
Forum: Fixing WordPress
In reply to: Full access to drafts?!Isn’t that what “private” is for?
Forum: Everything else WordPress
In reply to: Blogwidow is pretending it’s publishing your blogIt’s just a frame! I could easily set up the same thing. It’s not stealing, and their framed URI isn’t going to knock your site down in Google, because what they are showing in the bottom frame is your site. Look at the URI of the bottom frame… it’s the real URI of the site.
Didn’t any of you try building a site with frames circa 1997? It’s essentially two (or more) different pages, shown side by side. I can also pull up google.com in one browser window and my blog in another and tile the windows so that they’re right next to each other. Same effect.
The content isn’t on their server, it’s on yours. Grab a frame-buster if it bothers you.
Forum: Plugins
In reply to: Email Notification on Updatesabrazell,
Currently commenters who choose to subscribe to an entry using my plugin only get notification of new comments, but a feature is planned for a later version that allows the post author to notify subscribers when the post is updated.
Forum: Installing WordPress
In reply to: My header doesn’t line up in most browsers…Try increasing your #header width in your inline CSS styles