heliologue
Forum Replies Created
-
Forum: Plugins
In reply to: WordPress CAS AuthenticationI’m also having problems running this against 2.6.1. Either with phpCAS 0.6.0 or 1.0.0, I’ve gotten to the point where it will call the correct CAS login screen, but the wp-login.php complains of a bad password.
The author’s site seems down. Does anybody know how to get ahold of him?
Forum: Fixing WordPress
In reply to: Please help customizing K2The WordPress forums provide no support for K2 since it is an extensive modification and not merely a theme. All requests for support pertaining to K2 should be made at https://getk2.com/forum (which is currently down pending a database upgrade)
Forum: Fixing WordPress
In reply to: After installation, comment counts are all (0)I’m having the same issue; comment counts seem not to update (although the behavior is sporadic). “Editing” a comment correctly updates the count, but certainly this isn’t an ideal fix.
Forum: Themes and Templates
In reply to: Sidebar displays problems in IE<?php get_header(); ?>
<div id="content">
<?php if (have_posts()) : ?><?php while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title('-image-'); ?></a></h2>
<small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></small><?php the_meta(); ?><div class="entry">
<?php the_content('Read the rest of this entry »'); ?>
</div><p class="postmetadata">Posted in <?php the_category(', ') ?> <strong>|</strong> <?php edit_post_link('Edit','','<strong>|</strong>'); ?> <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></p>
</div><?php endwhile; ?>
<?php else : ?>
<h2 class="center">Not Found</h2>
<p class="center">Sorry, but you are looking for something that isn't here.</p>
<?php include (TEMPLATEPATH . "/searchform.php"); ?>
<?php endif; ?>
</div><?php get_sidebar(); ?>
<?php get_footer(); ?>