ColdForged
Forum Replies Created
-
Forum: Your WordPress
In reply to: End PegI think it looks excellent. Who knew Erik Cole fished! 😉
Forum: Installing WordPress
In reply to: Unable to downloadI’m pulling it down fine as we speak.
Forum: Fixing WordPress
In reply to: Problem with Database error on fresh installEh, didn’t realize that was a 1.2.x post, my bad. How about
wp-includes/classes.php. Mine’s at line 505, but yours may be different. Search for$where .= 'AND (post_status = "publish"';Forum: Fixing WordPress
In reply to: Problem with Database error on fresh installA search turned up this. Try that?
Forum: Fixing WordPress
In reply to: Wrong (filtered?) content on index, but not on singleIt likely is your template. You seem to be using
the_excerpt()in your index and archives pages instead ofthe_content(). Auto excerpts are stripped of HTML.Forum: Fixing WordPress
In reply to: Can a page be used for archives instead?I use a page for my archives which has a very different setup from my regular index. I used a plugin to actually display the post content how I want it there, but it’s entirely possible to use a Loop instance however you wish. See The Codex for some information about overriding things in an additional Loop context. The discussion about how I set up my archives page is here if you’re interested.
Forum: Requests and Feedback
In reply to: I get a fatal warning with Spelling CheckerYeah really. Honestly, I assume it’s the exception rather than the rule… but when I wrote the plugin I didn’t put too much thought into the error messages aside from putting something there that would give the user an idea what’s going wrong. Oddly, providing no suggestion probably would have been less confusing than providing that suggestion. Ah well.
Forum: Fixing WordPress
In reply to: If a Post has Multiple PagesDo the following:
<?php global $multipage;
if( $multipage ) {?><div class='postPages'><?php link_pages('<strong>Pages:</strong> ', '
', 'number'); ?></div>
<?php }?>Forum: Requests and Feedback
In reply to: I get a fatal warning with Spelling CheckerOh and I wouldn’t characterize the comments as “everyone praising it”… there’s 8 mentions of the word “fatal” on that page, and a comment expressly discussing this issue.
Forum: Requests and Feedback
In reply to: I get a fatal warning with Spelling CheckerIf it is, it’s wrong.
Depends on the install and host… for hosts that run PHP under the user’s UID — as mine does — 0755 is just right.
That said, for other types of hosts, 0777 may be required. residual, try creating a folder outside of your HTML hierarchy if you have one. For instance, if your web root is at
~/public_html/, create a folder called~/spell/, chmod it to 0777, and provide the full pathname to that folder for the temporary folder and for the personal dictionary location. That way you reduce the security risks from having a writeable folder in your web-accessible hierarchy.The reason you didn’t see the file is because Apache didn’t have permission to create it :).
Forum: Themes and Templates
In reply to: Howto: multiple loops in 1.5Excellent. There’s a similar resource available on the Codex, but more resources is always good.
Forum: Fixing WordPress
In reply to: How exactly does RSS work?Someone posted this in another post. Should help.
Forum: Fixing WordPress
In reply to: WarningIt’s likely you have whitespace following the
?>at the end ofwp-config.php. Remove that whitespace.Forum: Fixing WordPress
In reply to: Adding a PayPal Subscripiton ButtonIt’s not PHP code, Manzabar. It’s just a form. Somehow the form is being converted to HTML entities, but damned if I know why right now.
Forum: Fixing WordPress
In reply to: Adding a PayPal Subscripiton ButtonNo, if it’s a form it won’t require the PHP tag wrapping. Can you post the code there, or is that what didn’t work?