Len
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Reinstalling without FantasticoIt’s complaining about missing files. Somehow, someway, something didn’t work out the first time. Try uploading again.
Forum: Everything else WordPress
In reply to: Hosting several wordpress installsForum: Fixing WordPress
In reply to: News AgencyIf you want to see a list of some big sites using WordPress check this out.
Forum: Fixing WordPress
In reply to: WordPress Newbie needs help understanding…You have to have at least one post in the category before it will show up.
Forum: Fixing WordPress
In reply to: Blog Not Viewable in IE Anymore!Sometimes when you’re looking too hard it’s the obvious that alludes you. 😉
Forum: Plugins
In reply to: Is there a plugin to create forums like these?There are several plugins to create a forum but this particular forum is a standalone application called bbPress. It’s from the creators of WordPress.
Forum: Fixing WordPress
In reply to: Blog Not Viewable in IE Anymore!Look in header.php. You didn’t close your title tag.
</title>Forum: Fixing WordPress
In reply to: Only showing 5 postsTry this. On a local install I got it to spit out the same 15 images with excerpts while the main page is set to display only 5 posts. You’ll have to play around with it to get the result you want but it should get you started.
<?php query_posts('category_name=test&showposts=15'); ?> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <a href="<?php the_permalink() ?>" rel="bookmark" title="Buy this..."><?php post_image('/your/image/path/pic.gif', true); ?></a> <?php the_excerpt(); ?> <?php endwhile; ?><?php endif; ?>Forum: Requests and Feedback
In reply to: Update notificationOkay, just noticed this on the download page.
Forum: Fixing WordPress
In reply to: Invalid Username and blog posting goneYou can reset your username and password via phpMyAdmin. You’re also running 2.3.2 which has a known vulnerability you might want to have a look around.
Forum: Plugins
In reply to: Help, does WP 2.5 & XML Sitemap Gen 3.0.3.1 play nice??Might want to talk to your host about the memory issue. I just intentionally deep-sixed my database last night and started over with a shiny brand new one and rebuilt my sitemap with no problems. Didn’t even take a couple of minutes. I’m using WP 2.5 & XML Sitemap Gen 3.0.3.1
Forum: Plugins
In reply to: print all in categoryDon’t know about printing an entire category but GaMerZ has a plugin that allows you print posts on an individual basis.
Forum: Everything else WordPress
In reply to: Site Hacked?This is what I see,
Forum: Fixing WordPress
In reply to: Exclude certain categories from main page?I just answered this yesterday. Check the thread below. Obviously modify it to use more than one category.