I have a WordPress theme that's installed and has been running fine for a while. I recently needed to update the theme itself, and I did so using the built-in theme editor. Upon reloading the site, the theme changes are not presented in the markup.
Removing the index.php file from the theme or changing it's name results in a blank page as expected, but removing all contents of the theme's index.php does not have a similar effect. In fact, the WordPress installation continues as if I had not made index.php blank.
I have no caching plugins installed, Varnish is not present, memcached is not in use at all, and neither is APC.
I attempted upgrading all the plugins and WordPress itself. The raw-html plugin I have installed failed to update with a fatal error about an include on line 16, but that include was not present. The update worked fine when I renamed the plugin filename though (from raw_html.php to raw_html1.php).
index.php? And if so, are you sure that where you're checking on the frontend,index.phpis being used? – TheDeadMedic Jun 17 '11 at 20:22index.php, even if it isn't being used for that particular request. What parts of the site are you checking for changes? – TheDeadMedic Jun 17 '11 at 20:34single.php,page.php,front-page.php,home.phpetc. I'd advice modifying all your theme view files (just add an HTML comment that identifies the template), then check your source on the website for it. – TheDeadMedic Jun 17 '11 at 21:41