I've attempted to upgrade two different wordpress installs on my server (one at the root - stevehenningsgard.com, and one in a different folder acting as a root directory for a different domain - ironthrones.com), and neither has worked automatically. They both fail at the same spot:
"
Downloading update from http://wordpress.org/wordpress-2.8.4.zip.
"
It will create a file in the wp-content folder "wordpress-2.8.4.zip", but it will have a zero-byte size, and will never get any further.
I tried to manually upgrade ironthrones.com, and now I can't approve comments, or upgrade or enable some plugins.
After reading several suggestions relating to the .htaccess file and 1&1 web hosting, I created an .htaccess file with the following code:
"
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ./index .php [L]
</IfModule>
AddType x-mapp-php5 .php
# END WordPress
"
...which had no perceived effect. Please help!