ColdForged
Forum Replies Created
-
Forum: Themes and Templates
In reply to: WP 1.5 install themes does not workOkay, cd to your
wp-content/themesdirectory and perform als -l *, copy it and paste it here.Forum: Themes and Templates
In reply to: WP 1.5 install themes does not workThat won’t do it, tarpon, they have to be in a directory in the themes directory. The code searches for directories in the themes directory, then searches each of those directories for the stylesheet (style.css). If it finds that file in a directory, it’s considered a Theme.
Forum: Plugins
In reply to: 1 post for main and 10 per page for search/archive ?It’s not solely for categories. That plugin allows you to change the number of posts per page for any type of archive, from date to category to the main page.
You’re welcome to hard-code it, but the plugin will do what you want.
Forum: Themes and Templates
In reply to: WP 1.5 install themes does not workI would make sure that your web server has read and execute permission on all of those theme folders.
Forum: Plugins
In reply to: 1 post for main and 10 per page for search/archive ?Forum: Fixing WordPress
In reply to: Comment spam getting through?The base 1.5 Strayhorn code had a bug where if you had no moderation keys listed it would ignore the whitelist settings. You can either upgrade to a more recent nightly if you’re brave, or define some words in your moderation keys list.
Forum: Plugins
In reply to: A Couple of Plugin Questions3. As podz said in the other thread, what do the pages that fail have in common? And what kind of error on page are you referring? Are you trying to include spell checking of comments on your pages and some of those are failing? Is it failing in the admin interface? Are there errors reported on the Spell Check options page? I’ll need a whole lot more detail if I’m to find a cause/solution. Even better would be the URL of your site if it’s a spell checking of comments problem.
Forum: Fixing WordPress
In reply to: 1.5 – Archived posts show up 5 times a page!!Dunno… what template are you using and what’s in that template’s “single.php” equivalent?
Forum: Fixing WordPress
In reply to: See a category page?Or do what moshu said ;).
Forum: Fixing WordPress
In reply to: See a category page?First, you need the RunPHP plugin. Then you need to turn off the option that tells WordPress to correct invalid nested XHTML.
Forum: Fixing WordPress
In reply to: I need to “uncheck” the default category on Write PageSelect the appropriate category in that default email category select input. Modify “wp-admin/edit-form.php”. Change the code that says:
dropdown_categories($default_post_cat);to this
dropdown_categories(get_settings('default_category'));Forum: Fixing WordPress
In reply to: I need to “uncheck” the default category on Write PageSet the email one and change your options to use the advanced controls. Due to a typo, it should act like you want :D. At least it does in my 1.2.2 sandbox. Note that you have to set the option to use advanced controls in the options page, then click on the Write link… clicking on the “Advanced Controls >>” button on the simple write page won’t do it.
Forum: Fixing WordPress
In reply to: I need to “uncheck” the default category on Write PageOptions -> Writing -> Writing Options -> Default post category:
Forum: Installing WordPress
In reply to: Parse error, Warning, Fatal Error…Yes. You need to replace the text in singlequotes with what your database setup is. Like so:
<?php
// ** MySQL settings ** //
define(‘DB_NAME’, ‘thatguyjeff_db’);
define(‘DB_USER’, ‘thatguyjeff’);
define(‘DB_PASSWORD’, ‘******’);Forum: Fixing WordPress
In reply to: Post by “author”?simply include this in your template where you want it:
by <?php the_author()?>