Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter soflanights

    (@soflanights)

    Hi Paul,

    I don’t remember modifying archive.php, so I wonder what is missing, what is your plugin looking for?

    php get_header();
    php get_sidebar();

    <div id=”content”>
    php if (have_posts()) :
    php $post = $posts[0];

    php while (have_posts()) : the_post();

    <div class=”post”>
    <h3>” rel=”bookmark” title=”<?php the_title(); ?>”><?php the_title(); ?></h3>

    php the_excerpt(‘<p>Read more »</p>’);
    </div>

    php endwhile;

    <div class=”navigation”></div>

    php else:
    <h2>Page not found!</h2>
    <p>The page you trying to reach does not exist, or has been moved. Please use the menus or the search box to find what you are looking for.</p>
    php endif;

    </div>

    php get_footer();

    Thread Starter soflanights

    (@soflanights)

    Hi Lester,
    Thanks for suggestion, DB was repaired, but the error continues. According to hosting company Databse environment has a 15 concurrent connection limit per mysql user. MySQL connections are made, and then closed very quickly, generally in only a matter of milliseconds. If exceeding the 15 concurrent connections limit, then you likely have a rogue plugin or script which isn’t properly closing its connections.

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