Title: feverblue's Replies | WordPress.org

---

# feverblue

  [  ](https://wordpress.org/support/users/feverblue/)

 *   [Profile](https://wordpress.org/support/users/feverblue/)
 *   [Topics Started](https://wordpress.org/support/users/feverblue/topics/)
 *   [Replies Created](https://wordpress.org/support/users/feverblue/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/feverblue/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/feverblue/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/feverblue/engagements/)
 *   [Favorites](https://wordpress.org/support/users/feverblue/favorites/)

 Search replies:

## Forum Replies Created

Viewing 10 replies - 1 through 10 (of 10 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [List of recent posts (Plugin: Customizable Post Listings)](https://wordpress.org/support/topic/list-of-recent-posts-plugin-customizable-post-listings/)
 *  [feverblue](https://wordpress.org/support/users/feverblue/)
 * (@feverblue)
 * [18 years, 6 months ago](https://wordpress.org/support/topic/list-of-recent-posts-plugin-customizable-post-listings/#post-620310)
 * Man, I’ve tried and I’m still getting an error.
 * > WordPress database error: [Unknown column ‘wp_term_relationships.term_taxonomy_id’
   > in ‘on clause’]
   >  SELECT DISTINCT * FROM wp_posts LEFT JOIN wp_term_taxonomy
   > ON (wp_term_relationships.term_taxonomy_id = wp_term_taxonomy.term_taxonomy_id)
   > LEFT JOIN wp_term_relationships ON (wp_posts.ID = wp_term_relationships.object_id)
   > WHERE wp_posts.post_date <= ‘2007-11-15 11:07:51’ AND ( wp_posts.post_status
   > = ‘publish’ OR wp_posts.post_status = ‘sticky’ ) AND wp_posts.post_password
   > = ” AND ( wp_term_relationships.term_taxonomy_id = ’16’ ) GROUP BY wp_posts.
   > ID ORDER BY wp_posts.post_date DESC LIMIT 0, 10
 * This is driving me nuts. Using WP 2.3.1
 * Just to be clear, you’re talking about updating version 1.1 of the plugin, correct?
   not the 1.5 version that seems to be floating around out there.
 * Thanks for any insight anyone might have.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Make Index page = latest post page?](https://wordpress.org/support/topic/make-index-page-latest-post-page/)
 *  Thread Starter [feverblue](https://wordpress.org/support/users/feverblue/)
 * (@feverblue)
 * [19 years, 1 month ago](https://wordpress.org/support/topic/make-index-page-latest-post-page/#post-539828)
 * Ah. Problem solved. This was just a hunch, but I wondered if I needed to include
   the code:
 * `<?php inap_comments(); ?>` and the `<?php inap_addcomments(); ?>` within the
   loop instead of outside it. That did the trick. It was theme related, but the
   solution was not what I thought it would be.
 * Thanks all for the help!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Make Index page = latest post page?](https://wordpress.org/support/topic/make-index-page-latest-post-page/)
 *  Thread Starter [feverblue](https://wordpress.org/support/users/feverblue/)
 * (@feverblue)
 * [19 years, 1 month ago](https://wordpress.org/support/topic/make-index-page-latest-post-page/#post-539824)
 * Thanks, Sadish. It kinda worked. Well…actually not exactly. Upon loading, the
   index points the link to the first post in the database, in this case, the Dalmatian
   image. My grasp of php/mysql is getting better, but it’s not quite good enough
   to figure out how to tweak it. What do you think?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Make Index page = latest post page?](https://wordpress.org/support/topic/make-index-page-latest-post-page/)
 *  Thread Starter [feverblue](https://wordpress.org/support/users/feverblue/)
 * (@feverblue)
 * [19 years, 2 months ago](https://wordpress.org/support/topic/make-index-page-latest-post-page/#post-539774)
 * The WordPress files ARE installed directly into the photos folder. There is no‘
   wordpress’ subfolder. And the homepage setting in options is this: `http://planetneil.
   com/photos`
 * Here’s the index code (I’ve omitted non-essential stuff, such as links code):
 *     ```
       <?php get_header(); ?>    
   
       <!-- begin post -->
       <div class="entry">  
   
       <?php if (have_posts()) : ?>
           <?php while (have_posts()) : the_post(); ?>
   
       <?php static $ctr = 0;
       if ($ctr == "1") { break; }
       else { ?>
   
       <div class="nav">
       <?php previous_post_link('%link','<<&nbsp;&nbsp;&nbsp;'); ?>
       <?php the_title(); ?>
       <?php next_post_link('%link', '&nbsp;&nbsp;&nbsp;>>'); ?>
       </div><!-- NAV -->
   
       <?php global $post, $tableposts;
       $previous = @$wpdb->get_var("SELECT ID FROM $tableposts WHERE post_date < '$post->post_date' AND post_status = 'publish' AND id != 19 AND id != 3 AND id != 2 ORDER BY post_date DESC LIMIT 0,1 ");
       if ($previous) {
       $link = get_permalink($previous);
       echo '<a href="' . $link . '" title="Previous">' . $post->post_content . '</a>';
       } else {
       the_content('[More Photos]');
       } ?>
   
       <?php $ctr++; } ?>
       </div><!-- end ENTRY -->
   
       <div class="posted"><a href="<?php the_permalink() ?>" title="Permalink"><?php the_time('M j, \'y') ?></a> / <?php the_category(', '); ?> / <?php inap_comments_link();?> / <?php inap_addcomments_link();?> / <?php edit_post_link('   &middot; edit','<span class="editlink">','</span>'); ?>
       </div> <!-- end POSTED -->
   
       <!--#####################################-->
       <!-- EDIT OR ADD LINKS IN THE CODE BELOW -->
   
       <div class="links">
   
       **omitted**
   
       </div><!-- end LINKS -->
   
       <!-- <?php trackback_rdf(); ?> -->    
   
           <?php endwhile; ?>
         <?php endif; ?>
   
       <?php inap_comments(); ?> 
   
       <br />
       <?php inap_addcomments(); ?>
       <?php get_footer(); ?>
       </div><!-- end CONTAINER -->
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Make Index page = latest post page?](https://wordpress.org/support/topic/make-index-page-latest-post-page/)
 *  Thread Starter [feverblue](https://wordpress.org/support/users/feverblue/)
 * (@feverblue)
 * [19 years, 2 months ago](https://wordpress.org/support/topic/make-index-page-latest-post-page/#post-539766)
 * Thanks, doodlebee
 * Maybe this will help. Here’s the URL:
    [http://planetneil.com/photos/](http://planetneil.com/photos/)
 * Mouse over the ‘view comments’ link below the image. check the target in the 
   status bar. See how it’s aimed at an anchor located on the individual post page?
   If you click it, you’re taken to the post page. click it again, the comments 
   open like normal.
 * What I’d like is for the latest post page to open up by default when you visit
   the site, thereby eliminating the need for that first click.
 * Either that or figure out a way to configure the Ajax function to open the comments
   right there on the index page…
 * Any suggestions, anyone?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Make Index page = latest post page?](https://wordpress.org/support/topic/make-index-page-latest-post-page/)
 *  Thread Starter [feverblue](https://wordpress.org/support/users/feverblue/)
 * (@feverblue)
 * [19 years, 2 months ago](https://wordpress.org/support/topic/make-index-page-latest-post-page/#post-539593)
 * Thanks for the reply, but that’s not exactly what I’m after.
 * Hmm…Let’s see if I can explain a little better. I’ve got one post (one single
   picture) on the index page, no problem. But the ‘view comments’ link does not
   work as it should because it’s an index page. The link needs to be on a post 
   page in order to work.
 * So my question is, perhaps there’s a way to have the index page redirect to the
   most recent post page when it loads. That way visitors to the site can comment
   on the first post they see without having to first go to the post page for the
   image.
 * Does this make any more sense?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Import Blogger to WP (yawn!)](https://wordpress.org/support/topic/import-blogger-to-wp-yawn/)
 *  [feverblue](https://wordpress.org/support/users/feverblue/)
 * (@feverblue)
 * [19 years, 7 months ago](https://wordpress.org/support/topic/import-blogger-to-wp-yawn/#post-430273)
 * I had the exactt same problem. Same error. I switched my Blogger settings to “
   publish to BlogSpot” and it worked lke a charm. What an annoying detail.
 * Thanks guys!
 *   Forum: [Installing WordPress](https://wordpress.org/support/forum/installation/)
   
   In reply to: [Blogger Import Page Blank!](https://wordpress.org/support/topic/blogger-import-page-blank/)
 *  Thread Starter [feverblue](https://wordpress.org/support/users/feverblue/)
 * (@feverblue)
 * [19 years, 7 months ago](https://wordpress.org/support/topic/blogger-import-page-blank/#post-466880)
 * Thanks for the input. Unfortunately I’ve re-uploaded a few times. No dice. And
   the permissions are set wide open.
 * It seems to be server-related somehow, so I’m just going to try and set up WordPress
   on a different server, import the posts there and then export/import them to 
   the proper server using MySql.
 * I’ll report back.
 *   Forum: [Installing WordPress](https://wordpress.org/support/forum/installation/)
   
   In reply to: [Blogger import problem](https://wordpress.org/support/topic/blogger-import-problem-2/)
 *  Thread Starter [feverblue](https://wordpress.org/support/users/feverblue/)
 * (@feverblue)
 * [19 years, 7 months ago](https://wordpress.org/support/topic/blogger-import-problem-2/#post-463308)
 * Nope. Not the answer. Re-uploaded the pages a few times from different sources
   on differenct computers. I’ve inspected the script it’s fine. It’s there. All
   of WordPress works fine. The importers all simply load as blank pages. Nothing
   there at all.
 * Truly maddening.
 * Has no one run into this before?
 *   Forum: [Installing WordPress](https://wordpress.org/support/forum/installation/)
   
   In reply to: [Blogger import problem](https://wordpress.org/support/topic/blogger-import-problem-2/)
 *  Thread Starter [feverblue](https://wordpress.org/support/users/feverblue/)
 * (@feverblue)
 * [19 years, 7 months ago](https://wordpress.org/support/topic/blogger-import-problem-2/#post-463290)
 * I’ll check it out. I’ve uploaded the blogger.php script a few times, even transferring
   a known working copy form a different installation in case there was a currupt
   file. But it’s strange that not one of the importers loads in the browser.

Viewing 10 replies - 1 through 10 (of 10 total)