My title won’t update

It looks like you can’t update your low accept rate either. Anyways, have you tried checking your theme’s header.php file? What is the value between the title tags? Are you using any third party plugins for SEO like WordPress SEO by Yoast? Try adding this between the title tags:

<?php wp_title("",true); ?>

You will also run into the issue of not having a page title if you are using a custom page as your homepage, the WordPress Codex entry here for Wp_Title suggests this bit of code if that’s the case:

<title><?php bloginfo('name'); ?> | <?php is_home() ? bloginfo('description') : wp_title(''); ?></title>