Hi there, I started seeing a problem in my self-hosted blog when I got a 404 after updating a blog. So I deleted that blog and started a new folder and database. But before I did that, I used the Export tool and got the file.
Anyways, on my new blog. I've already run into problems. First of all, when I edit a post, I get this error:
An appropriate representation of the requested resource /wp-admin/post.php could not be found on this server.
OR sometimes I will be redirected to: myblogsite.com/wp-admin/post.php/edit.php/edit.php/ which is wrong...
HOWEVER, I can update the post I made on 1/28/2011, but every other post -- no. I get that error. Also, I cannot update my Permalinks because I get this error:
Not Acceptable
An appropriate representation of the requested resource /wp-admin/options-permalink.php could not be found on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
Help? I am using .htaccess on public_html:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress