Hello,
I received the same error “Your server is running PHP version 4.4.9 but WordPress 3.2 requires at least 5.2.4”
My server is running PHP 5.2.4.
I have been using WP_Query on my website outside of WP and everything worked fine until I upgraded to 3.2 today:
<?php
$recent_posts = new WP_Query();
$recent_posts->query(‘showposts=7’);
?>
<?php while ($recent_posts->have_posts()) : $recent_posts->the_post(); ?>
<ul class=”blog”>
<li class=”PadLeft5 PadBot5″>
” title=”Follow to SEO Blog Post” target=”_blank” class=”font10ptNormalBlack” rel=”bookmark”><?php the_title(); ?>
<?php endwhile; ?>
Any thoughts?
Best Regards
Sean