Mark Jaquith
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Apache LimitRequestFieldSize directive can harm WPChange the setting, or ask your web host to do so. Or, if neither is possible, consider changing hosts… that’s a crazy thing for them to do. WordPress isn’t going to be able to fix this, unfortunately.
Forum: Plugins
In reply to: Plugin Filters not being activatedAre you sure that the
<?php wp_head(); ?>call is properly placed in the<head></head>section?Can you give a link to the plugin code? (use a pastebin like http://phpfi.com/)
Forum: Fixing WordPress
In reply to: WordPress database errorPlugin error.
view_countis not a default column in the posts table. You must have some sort of stats plugin that is using that column… check with the plugin author about a solution.Forum: Fixing WordPress
In reply to: CREATING a file limit for uploads….?It appears that there is no longer a way to do this in WP 2.x
I’ve filed a ticket on your behalf:
http://trac.wordpress.org/ticket/2596#previewTry using the IP address or hostname (like
localhost) that you are using to access it locally, withhttp://and all.You sure you don’t have other software like Norton Internet something-or-other that may be blocking refs?
Forum: Plugins
In reply to: Askimet ErrorLatest version of Akismet plugin? If not, upgrade.
Recently upgraded to WP 2.0.2? If so, re-upload
wp-adminandwp-includesfolders.Forum: Themes and Templates
In reply to: Inexplicable Font variation!You may have left a
<b>or<strong>tag open. You have a lot of work to do to get your HTML validated:
http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.seamshistoric.com%2Fjournal%2FValidation should be your first goal… it’s hard to diagnose problems without validation because of the different ways different browsers deal with invalid HTML.
Don’t get discouraged, many of your errors are the same error repeated many times, and sometimes fixing one error fixes a bunch of other ones.
Forum: Fixing WordPress
In reply to: can’t activate akismetIs this a recent install of WordPress? That’s very odd. I’d make sure
wp-adminandwp-includesfolders are uploaded properly.Forum: Fixing WordPress
In reply to: Changing comments linkYes, please refer to:
http://codex.wordpress.org/Template_Tags/comments_numberForum: Plugins
In reply to: Help! Implementing Asides kills my permalinks.I don’t see where you’re calling your sidebar.
It works like this:
LOOP #1
rewind_posts();
LOOP #2Think of the posts as a tape. After watching it, you have to rewind it before anyone else can watch it. So it doesn’t matter whether your sidebar comes before your main content or after, rewind_posts(); needs to go between the two loops. Above, if looks like you have it before the fist loop, and I don’t see a second loop.
Forum: Fixing WordPress
In reply to: Publish all draftsNo, not that I know of… at least, not any way that won’t cause problems (you could update the post_status in the database, but that throw post counts off).
Forum: Fixing WordPress
In reply to: set a variables contents as the_content()If you want the content with all filters applied:
$content = apply_filters('the_content', get_the_content());If you want just the raw content:
$content = get_the_content();Forum: Fixing WordPress
In reply to: You know how your front page posts get pushed back a page…Your blog’s front page contains the last X posts you have posted, where X is the number of posts you have chosen to have shown per page, and assuming you have it set to show posts, and not days (days has never worked well, I don’t recommend using it).
So no, the mere passage of time shouldn’t change anything.
Forum: Themes and Templates
In reply to: wp-includes/template-functions-post.php and <li><ul><li>is the proper markup for a list. You can change the way it looks on your page via CSS. For instance, to turn off the bullets, you can do:#your-list-id { list-style: none; }Forum: Fixing WordPress
In reply to: My version of WP seems to be corruptedProblem seems to be resolved.